I use the following to link Access97 to an Oracle database via ODBC:
DoCmd.TransferDatabase acLink, "ODBC", "ODBC;DSN=XXXX;UID=XXXX;PWD=XXXX;LANGUAGE=us_english; & DATABASE = C:\PROGRAM FILES\XXXX\XXXX.mdb", acTable, "MYTBLE", "LinkTest"
A dialog box opens and requests the user to select the Unique Identifier.
Does anyone know a way to include the Unique Identifier in the DoCmd statement so the users will not have to select it?
Please advise.
Thanks!
DoCmd.TransferDatabase acLink, "ODBC", "ODBC;DSN=XXXX;UID=XXXX;PWD=XXXX;LANGUAGE=us_english; & DATABASE = C:\PROGRAM FILES\XXXX\XXXX.mdb", acTable, "MYTBLE", "LinkTest"
A dialog box opens and requests the user to select the Unique Identifier.
Does anyone know a way to include the Unique Identifier in the DoCmd statement so the users will not have to select it?
Please advise.
Thanks!