303factory
Registered User.
- Local time
- Today, 18:01
- Joined
- Oct 10, 2008
- Messages
- 136
I have to ask why you're using ADO for ODBC linked tables. With linked tables, DAO is preferred, as the data is coming through Jet, anyway, so you ought to use Jet's native interface. Using ADO means you're using Jet, ODBC, ADO and OLEDB, instead of just DAO, Jet and ODBC. I'm not suggesting this would resolve any problem, just that the use of ADO with data being handled by Jet (i.e., any ODBC linked table) makes no sense.
Now, if you had a MySQL OLEDB driver and used it directly (instead of using ODBC linked tables), then ADO would be perfectly sensible. But that doesn't appear to be what you're doing.
I must confess I'm such a n00b in this area I don't really understand what you're saying here.. I set things up the way I did following these instructions here:
http://dev.mysql.com/doc/refman/5.0...nector-odbc-examples-tools-with-access-import
http://dev.mysql.com/doc/refman/5.0/en/connector-odbc-configuration-dsn-windows.html
If you can suggest a better way to do things you may have to spell it out with glove puppets (or perhaps link me to some instructions) but I'd certainly be interested.