H
Hal Levy
I run something like the following:
DoCmd.TransferDatabase acLink, "ODBC Database",
"ODBC;Description=myDatabase;DRIVER=SQL
Server;SERVER=PSQL;UID=user;PWD=password;APP=Microsoft Data Access
Components;DATABASE=myDatabase", acTable, "tblMyTable", "dbo_tblMyTable"
what I find in the mSysObjects table is
Description=myDatabase;DRIVER=SQL Server;SERVER=PSQL;APP=Microsoft Data
Access Components;DATABASE=myDatabase
as you can see the UID and PWD were removed. I need them there... as
they are for all the other tables that are linked. However anything I
am adding now won't save the UID and PW.
How can I get it to save the information in the Connect column like it
has for all the others?
Thanks!
DoCmd.TransferDatabase acLink, "ODBC Database",
"ODBC;Description=myDatabase;DRIVER=SQL
Server;SERVER=PSQL;UID=user;PWD=password;APP=Microsoft Data Access
Components;DATABASE=myDatabase", acTable, "tblMyTable", "dbo_tblMyTable"
what I find in the mSysObjects table is
Description=myDatabase;DRIVER=SQL Server;SERVER=PSQL;APP=Microsoft Data
Access Components;DATABASE=myDatabase
as you can see the UID and PWD were removed. I need them there... as
they are for all the other tables that are linked. However anything I
am adding now won't save the UID and PW.
How can I get it to save the information in the Connect column like it
has for all the others?
Thanks!