java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket. at com

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket. at com相关的知识,希望对你有一定的参考价值。

jar 包也导入了,SQL Server 2000的SP4升级包也装了,还是没有用。

你这个是数据库连接出现异常,首先保证你的程序中有SQLServer 2000 Driver for JDBC的驱动程序,其次你的系统要安装SQL Server 2000的SP4升级包。
还有你的数据库登录方式应用选择:SQL身份验证和系统验证。
如果这些都不能解决的话,可能程序有问题吧。
我有这个方面的Java项目案例源码,运行没有任何异常。
需要的话Q我1106728496。
参考技术A 这个是套接字的问题 跟sql server2000没关系...试试修改jdbc的问题

java.sql.SQLException: ORA-00604: 递归 SQL 级别 1 发生错误

【中文标题】java.sql.SQLException: ORA-00604: 递归 SQL 级别 1 发生错误【英文标题】:java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 【发布时间】:2012-11-06 10:43:22 【问题描述】:

我收到以下 SQL 异常,但我不知道此异常的根本原因是什么?我也在关闭数据库连接和语句。

java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1
ORA-01000: maximum open cursors exceeded
ORA-00604: error occurred at recursive SQL level 1
ORA-01000: maximum open cursors exceeded
ORA-01000: maximum open cursors exceeded

以下是我的代码:

 while(true)
 

   Statement stmt2 = conn1.createStatement();
   ResultSet rs2 = null;

   int rec_count=0;
   rs2 = stmt2.executeQuery("select count(*) as cnt from   some_table");                                  
    while(rs2.next())
   
     rec_count = rs2.getInt("cnt");
   

   if(rec_count>0)
   
     update_qry_b_trg1 = "update some_table set to_be_triggered=1,algo_status='D',dealer_id='HD001',price_trig_date=sysdate where buy_sell = 'SELL' and ordertype = 'BNLD' and to_be_triggered = 0 and algo_status = 'P' and Mod(group_ref_no,5)="+th_id;

   String final_qry = "BEGIN \n"+update_qry_b_trg1+";\n"+";\n END;";

   int rows = stmt1.executeUpdate(final_qry);
   stmt1.close();
   

   rs2.close();
   stmt2.close();

   

【问题讨论】:

您容易受到 SQL 注入的攻击。请阅读prepared statements 来解决此问题。 您粘贴的代码似乎没有任何光标泄漏。我建议您在运行时检查数据库上的 v$open_cursor 以确定发生了什么。本的观点也很有效, th_id 不应该只是粘贴在那里。另外,如果您只在表中查找 1 行,请不要仅 count(*) 至少添加 where rownum = 1 以减少您所做的工作。 为什么您的更新查询包含在 BEGIN 和 END 中?我认为您的更新查询正在作为 PROCEDURE 执行,并且由于您的 while 循环是无限的,因此会导致问题。 【参考方案1】:

无论在哪里初始化 stmt1,最好在 finally 块中关闭它。在您的情况下,您将在 if 条件下关闭它。如果条件不通过,语句将保持打开状态,您将得到这个

java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1

您还需要在 while 循环中运行它,因此您需要确保关闭每个打开的语句。

【讨论】:

以上是关于java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket. at com的主要内容,如果未能解决你的问题,请参考以下文章

java.sql.SQLException:getShort() 的值无效 - ''

java.sql.SQLException: SQL 语句在 org.hsqldb.jdbc.JDBCUtil.sqlException 处关闭

Oracle DB:java.sql.SQLException:关闭连接

Cause: java.sql.SQLException: 请求的转换无效 ; uncategorized SQLException for SQL []; SQL state [99999]; er

java.sql.SQLException: Access denied for user 'root'@'d001' (using password: YES)(代码

java.sql.SQLException: ORA-00604: 递归 SQL 级别 1 发生错误