In Microsoft Access 2003 and Visual Basic 6 I\'m trying to copy a table to another access database that is password protected like this...
Select * INTO tabl
If doesn't work this
SELECT * INTO [;PWD=TestPass;DATABASE=C:\Docs\database2.mdb].table2 FROM table1
Try to add "" like this
""
SELECT * INTO [";PWD=TestPass;DATABASE=C:\Docs\database2.mdb"].table2 FROM table1
It worked for me (Delphi with jet SQL)