当前位置:   article > 正文

Java连接SQL Server2019报错,TCP/IP已打开并设置端口1433_sqlserver2019 tcp

sqlserver2019 tcp

有无大神可以解答,已经在sql server配置管理器中打开TCP/IP,也设置了端口1433,配置完之后也重启了SQL Server,但是在eclipse中一运行就报错,实在看不懂了。求解答(报错图片在下面

以下是代码

  1. package db;
  2. import java.sql.*;
  3. public class db {
  4. private Connection dbConn;
  5. private Statement stateMent;
  6. public db() {
  7. String driverName="com.microsoft.sqlserver.jdbc.SQLServerDriver";
  8. String dbURL="jdbc:sqlserver://localhost:1433;DatabaseName=pay0101";
  9. String userName="sa";//默认用户名
  10. String usePwd="******";//密码
  11. try {
  12. Class.forName(driverName);
  13. dbConn=DriverManager.getConnection(dbURL, userName, usePwd);
  14. System.out.println("Connection Successful!");
  15. }catch(Exception e) {
  16. System.out.println(e.getMessage());
  17. }
  18. }
  19. public int executeUpdate(String sql) throws SQLException{
  20. stateMent=dbConn.createStatement();
  21. return stateMent.executeUpdate(sql);
  22. }
  23. public ResultSet executeQuery(String sql) throws SQLException{
  24. stateMent=dbConn.createStatement();
  25. return stateMent.executeQuery(sql);
  26. }
  27. public void closeConn() throws SQLException{
  28. stateMent.close();
  29. dbConn.close();
  30. }
  31. }

 TCP/IP

连接时报错

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/666638
推荐阅读
相关标签
  

闽ICP备14008679号