Hibernate:SQL Server .MDF 文件的 connection.url

发布于 2024-12-17 03:31:44 字数 194 浏览 1 评论 0原文

如何为 SQL Server .MDF 文件使用 Hibernate connection.url?我已经尝试过

prop.setProperty("hibernate.connection.url", "jdbc:sqlserver://c:\\db.mdf");

但不起作用:(

谢谢!

How do I Hibernate connection.url for SQL Server .MDF File? I've tried

prop.setProperty("hibernate.connection.url", "jdbc:sqlserver://c:\\db.mdf");

but don't work :(

Thx!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

自由如风 2024-12-24 03:31:44

属性 hibernate.connection.url 采用您必须提供的连接到数据库的 JDBC URL。在 中了解更多信息文档

例如:

hibernate.connection.url = jdbc:postgresql://localhost/mydatabase

MDF 文件是数据的内部表示微软 SQL 服务器。您应该连接到 SQL Server,而不是 MDF 文件。我还发现了一个问题,确认您不能在 MS SQL Server 之外使用 MDF 文件。

The property hibernate.connection.url takes the JDBC URL that you have to provide which connects to a database. Read more about it in the documentation.

Eg:

hibernate.connection.url = jdbc:postgresql://localhost/mydatabase

MDF file is an internal representation of data in MS SQL Server. You should be connecting to a SQL Server and not the MDF file. I have also found a question confirming that you can not use a MDF file out side the MS SQL Server.

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