问题
DataGrip连接SQL Server
连接SQL Server失败,默认使用的驱动是sqljdbc4:
结果报错信息如下:
[08S01] 驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接。错误:“The server selected protocol version TLS10 is not accepted by client preferences [TLS13, TLS12]”。
javax.net.ssl.SSLHandshakeException: The server selected protocol version TLS10 is not accepted by client preferences [TLS13, TLS12].
参考DataGrip连接SQL Server,提示驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server建立安全连接的解决方法
结果使用Microsoft SQL Server(jTds)之后,报错信息如下:
[08S01] Network error IOException: The server selected protocol version TLS10 is not accepted by client preferences [TLS13, TLS12]
javax.net.ssl.SSLHandshakeException: The server selected protocol version TLS10 is not accepted by client preferences [TLS13, TLS12].
参考解决方法。
新建文件custom.java.security
,内容如下:
jdk.tls.disabledAlgorithms=SSLv3, TLSv1.1, RC4, DES, MD5withRSA, \
DH keySize < 1024, EC keySize < 224, 3DES_EDE_CBC, anon, NULL, \
include jdk.disabled.namedCurves
选中数据库,右键属性,点击高级,在VM options里面增加如下内容:-Djava.security.properties=C:\Users\<awesome_me>\Downloads\custom.java.security
然后重新点击Test Connection,如果不行,请清除DataGrip缓存重启:Invalidate Caches,然后Invalidate And Restart。
事实上,这个报错,对于其他数据源也是适用的。
SQLServerException: 语句被终止。完成执行语句前已用完最大递归100
SQL语句中有递归查询,要么是递归次数过大,要么进入递归死循环。检查SQL语句。
服务器范围的默认值为 100。如果指定 0,则没有限制。
SQLServerException: A result set was generated for update
报错信息:java.lang.Exception: com.microsoft.sqlserver.jdbc.SQLServerException: A result set was generated for update.
解决方法:
private void dealExecuteWithDbType(String sql, String driver, Statement stat) throws SQLException {
if (driver.equals(DbDriverTypeEnum.SQLSERVER.getDbDriverType())) {
// SQL Server特殊处理:SQLServerException: A result set was generated for update.
stat.executeQuery(sql);
} else {
stat.executeUpdate(sql);
}
}
SQLServerException: The statement did not return a result set.
报错信息:java.lang.Exception: com.microsoft.sqlserver.jdbc.SQLServerException: The statement did not return a result set.
解决方法:把stat.executeQuery(sql);
改成stat.execute(sql);
文章来源:https://www.toymoban.com/news/detail-442101.html
Error encountered when performing Introspect database master: 不支持“variant”数据类型
在使用Intellij IDEA或者DataGrip连接SQL Server数据源报错。
解决方案:勾选Introspect using JDBC metadata
文章来源地址https://www.toymoban.com/news/detail-442101.html
到了这里,关于SQL Server问题记录的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!