gpt4 book ai didi

java - unicode 支持使用数据源名称与 sqlserver 的 jdbc 连接

转载 作者:行者123 更新时间:2023-12-04 06:00:28 24 4
gpt4 key购买 nike

案例1:我正在尝试使用以下命令连接到位于远程服务器上的 sql-server 2005 数据库

Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
connection = DriverManager.getConnection("jdbc:sqlserver://190.128.4.195/unicodedemo?user=ab&password=ab@Admin&useUnicode=true&characterEncoding=UTF-8");

当我执行时,出现以下异常:
com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host 190.128.4.195/unicodedemo?user=ab&password=ab@Admin&useUnicode=true&characterEncoding=UTF-8, port 1433 has failed. Error: "null. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connections to the port are not blocked by a firewall.".

案例2:但是当我尝试使用数据源名称时
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver") ;
connection = java.sql.DriverManager.getConnection("jdbc:odbc:unidemo","ab","ab@Admin");

数据成功插入,但在这种情况下,它没有显示插入的 Unicode 数据。它显示为 ????? .

有人可以帮助解决错误吗?当我在案例 1 中提交时,如何使用第二个案例(即使用 DSN)插入 Unicode 值。

谢谢..

最佳答案

情况1:
SQL Server 的连接 URL 格式如下:

jdbc:sqlserver://[serverName[\instanceName][:portNumber]][;property=value[;property=value]]

这意味着您可能应该将连接 URL 更改为
jdbc:sqlserver://190.128.4.195;databaseName=unicodedemo;user=ab;password=ab@Admin;useUnicode=true;characterEncoding=UTF-8

关于java - unicode 支持使用数据源名称与 sqlserver 的 jdbc 连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8969981/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com