From db1 create the following query
INSERT INTO Table1 ( Field2, Field3, Field4, Field5 )
SELECT Table1.Field2, Table1.Field3, Table1.Field4, Table1.Field5
FROM Table1 IN 'E:\db2.mdb';
this gets values from db2/table1 and inserts them into db1/Table1. You can create a query programatically as well. You may be able to pass this string on a command object.
Sal
|