Java 上的 IBatis 和 SQL Server
我正在尝试与 SQL Server 建立 Java 连接,但遇到一些问题。我相信我没有正确指定数据库名称。我的 SQL 映射就像
<transactionManager type="JDBC">
<dataSource type="SIMPLE">
<property value="com.microsoft.sqlserver.jdbc.SQLServerDriver" name="JDBC.Driver" />
<property value="jdbc:sqlserver://${host}:${port}" name="JDBC.ConnectionURL" />
<property value="${name}" name="JDBC.DatabaseName" />
<property value="${username}" name="JDBC.Username" />
<property value="${password}" name="JDBC.Password" />
</dataSource>
</transactionManager>
我连接成功,但是当我尝试从我们的一个表中检索某些值时,它显示错误:无效的对象名称“[表名称]”
如何在此 SQL 映射中指定我的数据库名称?
提前致谢
I'm trying to make a Java connection with SQL Server, but I'm facing some problemas. I believe I not specifying correctly the database name. My SQL Map is something like
<transactionManager type="JDBC">
<dataSource type="SIMPLE">
<property value="com.microsoft.sqlserver.jdbc.SQLServerDriver" name="JDBC.Driver" />
<property value="jdbc:sqlserver://${host}:${port}" name="JDBC.ConnectionURL" />
<property value="${name}" name="JDBC.DatabaseName" />
<property value="${username}" name="JDBC.Username" />
<property value="${password}" name="JDBC.Password" />
</dataSource>
</transactionManager>
I connection is successfully, but when I try to retrieve some value from one of ours tables, it's show the error: Invalid object name '[table name]'
How can I specify my database name in this SQL Map?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我一直知道 JDBC.DatabaseName 不存在,但我尝试过。现在,我尝试更改此键,发现在 SQLMap 文档中,Driver.Key 用于设置驱动程序属性,因此我将 JDBC.DatabaseName 更改为 Driver.DatabaseName,它有效!!!!
I always know that JDBC.DatabaseName doesn't exists, but I tried. Now, I try changing this key and I found, in SQLMap docs, Driver.Key is used to set driver properties, so I change JDBC.DatabaseName to Driver.DatabaseName, and It works!!!!!