使用 ADO 连接连接到 SQL Compact 4.0
使用 中的 SQL Compact 版本 4.0 Microsoft SQL Server Compact 4.0,我使用 SQL Studio 在 E:\tmp\EmbSQL.sdf
上创建了一个新的紧凑数据库。
尝试从 Excel 宏进行连接:
Set conn = CreateObject("ADODB.Connection")
strCnxn = "Provider=Microsoft.SQLSERVER.CE.OLEDB.4.0;Data Source=E:\tmp\EmbSQL.sdf;"
conn.Open strCnxn
出现以下错误:
“运行时错误 -2147467259 (80004005)”。
关于出了什么问题的任何提示吗?
Using the SQL Compact version 4.0 from Microsoft SQL Server Compact 4.0, I've created a new compact database on E:\tmp\EmbSQL.sdf
with SQL Studio.
Trying to connect from Excel Macro:
Set conn = CreateObject("ADODB.Connection")
strCnxn = "Provider=Microsoft.SQLSERVER.CE.OLEDB.4.0;Data Source=E:\tmp\EmbSQL.sdf;"
conn.Open strCnxn
Getting the following error:
'Runtime Error -2147467259 (80004005)'.
Any hint on what's going wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该错误表明访问被拒绝的情况。 E:驱动器是本地驱动器吗?您有该文件夹的写入权限吗?
The error indicates a access denied situation. Is the E: drive a local drive? and do you have write accessto the folder?
尝试将数据库升级到4.0,SqlceEngine.Upgrade。
Try to upgrade the database to 4.0, SqlceEngine.Upgrade.