选择另一个受密码保护的数据库中的表?
在 Microsoft Access 2003 和 Visual Basic 6 中,我尝试将表复制到另一个受密码保护的 Access 数据库,如下所示...
Select * INTO table2 IN 'database2.mdb' [;Password=TestPass] From table1
它失败并出现错误:不是有效的密码
是否选择 INTO 格式不接受 mdb 的密码,并且密码必须位于连接字符串中?如果没有,如何引用不同的连接字符串/数据库?
谢谢
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 table2 IN 'database2.mdb' [;Password=TestPass] From table1
It fails with error : Not a valid password
Does the Select INTO format not accept the password with the mdb, and the password has to be in a connection string? If not, how do you reference a different connection string/database?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
怎么样:
这些天我更倾向于使用类似下面的行,它提供了更多控制并允许不同的后端:
您可以在方括号之间放置任何有效的连接字符串。
参考:http://www.connectionstrings.com/
How about:
These days I would be more inclined to use something like the line below, it gives more control and allows for different back-ends:
You can put any valid connection string between the square brackets.
Reference: http://www.connectionstrings.com/
如果这不起作用
尝试添加
""
像这样它对我有用(Delphi with jet SQL)
If doesn't work this
Try to add
""
like thisIt worked for me (Delphi with jet SQL)