java连接访问数据库问题
当尝试连接访问数据库时,我收到此错误: [Microsoft][ODBC 驱动程序管理器] 未找到数据源名称且未指定默认驱动程序 这是我的代码:
Class.forName ("sun.jdbc.odbc.JdbcOdbcDriver");
DriverManager.getConnection ("jdbc:odbc:Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=d:\task.accdb", "" , "");
我猜它必须与它是 64 位这一事实有关? 如何解决这个问题?如果没有,我可以使用其他数据库(例如 access)吗?
提前致谢。
When trying to connect the access db i get this error:
[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
this is my code:
Class.forName ("sun.jdbc.odbc.JdbcOdbcDriver");
DriverManager.getConnection ("jdbc:odbc:Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=d:\task.accdb", "" , "");
I' guessing it have to do someting with the fact that it is 64bit?
How can this be fixed? and if not are they any other databases like access that I can use?
Thank's In Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的连接字符串中有未转义的
\
。尝试使用此字符串:您还可以为数据库创建系统 DSN(如果是 64 位系统,您可以在 32 位和 64 位环境中执行),然后使用连接字符串,例如:
In your connection string there is unescaped
\
. Try with this string:You can also create System DSN for your database (in case of 64 bit systems you can do in in both 32 bit and 64 bit environments) and then use connect string like: