I'm using MS Access to connect to two external databases. I need to programmatically pull data from one database and copy it to the other, without copying it to local MS Access tables first.
My first effort involved (manually) creating links to the tables in the source and target databases, then programmatically creating an ADO connection to CurrentProject.Connection, and executing "INSERT INTO TABLE_B SELECT * FROM TABLE_A" against the new connection. This worked, but relies on creating linked tables.
Is there a way to do it without linked tables, i.e. just with ADO?
My first effort involved (manually) creating links to the tables in the source and target databases, then programmatically creating an ADO connection to CurrentProject.Connection, and executing "INSERT INTO TABLE_B SELECT * FROM TABLE_A" against the new connection. This worked, but relies on creating linked tables.
Is there a way to do it without linked tables, i.e. just with ADO?