Hibernate:SQL Server .MDF 文件的 connection.url
如何为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
属性
hibernate.connection.url
采用您必须提供的连接到数据库的 JDBC URL。在 中了解更多信息文档。例如:
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:
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.