SQLServerException:执行SQL时语句未返回结果集

时间:2009-12-01 13:44:40

标签: sql-server sql-server-2005 jdbc

我正在使用sqljdbc4.jar(sqljdbc_2.0)版本。

我正在执行插入+选择返回以获得如下身份:

BEGIN 
INSERT INTO DateRangeOptions (Description,Code) 
VALUES ('dateRange.quickPick.option.all','ALL');  
SELECT SCOPE_IDENTITY()  
END

我得到了:

com.microsoft.sqlserver.jdbc.SQLServerException: The statement did not return a result set.

该行是:

st.executeQuery(updateQuery)

有什么想法吗?

3 个答案:

答案 0 :(得分:8)

从SQL 2000升级到SQL 2005并切换到Microsoft SQL Server 2005 JDBC驱动程序1.2版。我在执行Insert后跟SELECT SCOPE_IDENTITY()时收到错误“语句没有返回结果”。我使用executeUpdate()和getGeneratedKeys而不是executeQuery解决了这个问题。这是前后代码。

注意:此示例中使用的连接是java.sql.connection而不是com.microsoft.sqlserver.jdbc.SqlServerConnection。

SQL 2000代码

String  dbURL = "jdbc:sqlserver" + "://" + dbServer + ":" +
                 dbServerPort + ";SelectedMethod=cursor;databaseName="
                           + dbName + ";user=xxx;password=xxx";
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
java.sql.Connection connection = DriverManager.getConnection(dbURL);
sql = "insert into Contact (name) values ('ABC'); SELECT SCOPE_IDENTITY()";
PreparedStatement ps = connection.prepareStatement(sql);
ResultSet rs = ps.executeQuery();
if (rs.next()) {
     long id = rs.getLong(1);
     System.out.println("Id=" + id);
}

SQL 2005代码

String  dbURL = "jdbc:sqlserver" + "://" + dbServer + ":" +
                 dbServerPort + ";SelectedMethod=cursor;databaseName="
                           + dbName + ";user=xxx;password=xxx";

Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
java.sql.Connection connection = DriverManager.getConnection(dbURL);
sql = "insert into Contact (name) values ('ABC'); SELECT SCOPE_IDENTITY()";
PreparedStatement ps = connection.prepareStatement(sql);
ps.executeUpdate();  // do not use execute() here otherwise you may get the error
                     // The statement must be executed before 
                     // any results can be obtained on the next
                     // getGeneratedKeys statement.

ResultSet rs = ps.getGeneratedKeys();
if (rs.next()) {
     long id = rs.getLong(1);
     System.out.println("Id=" + id);
}

答案 1 :(得分:1)

您插入的行失败,因此没有身份?设置断点查询是在Java中生成的,复制出查询字符串并在管理工作室中运行它以查看结果。这可能会告诉你你做错了什么。

答案 2 :(得分:1)

升级驱动程序的任何选项?然后你可以使用Statement#getGeneratedKeys()。另请参阅此文章:http://msdn.microsoft.com/en-us/library/ms378445%28SQL.90%29.aspx

如果这不是一个选项,那么您需要在同一个连接上分别激活INSERTSELECT