java连接访问数据库问题

发布于 2024-11-30 16:38:31 字数 363 浏览 2 评论 0原文

当尝试连接访问数据库时,我收到此错误: [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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偏爱自由 2024-12-07 16:38:31

在您的连接字符串中有未转义的 \。尝试使用此字符串:

DriverManager.getConnection ("jdbc:odbc:Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=d:\\task.accdb", "" , "");

您还可以为数据库创建系统 DSN(如果是 64 位系统,您可以在 32 位和 64 位环境中执行),然后使用连接字符串,例如:

jdbc:odbc:northwind

In your connection string there is unescaped \. Try with this string:

DriverManager.getConnection ("jdbc:odbc:Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=d:\\task.accdb", "" , "");

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:

jdbc:odbc:northwind
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文