In Microsoft Access 2003 and Visual Basic 6, I am trying to copy a table to another password protected access database like this ...
Select * INTO table2 IN 'database2.mdb' [;Password=TestPass] From table1
Error with error: Invalid password
Does the Select INTO format not support the password using mdb, and should the password be in the connection string? If not, how do you refer to another row / connection database?
thank
Brian source
share