9

我的 mysql db 的 jdbc 驱动程序是 5.1.25 版本。

我想像这样执行sql查询:

statement.execute("select fullName from user where user_id=1; select fullName from user where user_id=2");

而且我总是收到异常:

Exception in thread "main" com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select fullName from user where user_id=2' at line 1
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:525)
    at com.mysql.jdbc.Util.handleNewInstance(Util.java:411)
    at com.mysql.jdbc.Util.getInstance(Util.java:386)
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1054)
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4187)
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4119)
    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2570)
    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2731)
    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2809)
    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2758)
    at com.mysql.jdbc.StatementImpl.execute(StatementImpl.java:894)
    at com.mysql.jdbc.StatementImpl.execute(StatementImpl.java:732)
    at dbViewer.model.UserConnectionManager.retrieveRoutinesNames1(UserConnectionManager.java:622)
    at dbViewer.model.UserConnectionManager.main(UserConnectionManager.java:637)

但是,当我从命令行运行相同的查询(用分号分隔)时,它可以完美运行并按预期输出两个表。

4

3 回答 3

17

在大多数数据库的查询中使用;不起作用,因为它通常不是语句语法本身的一部分,而是命令行或脚本输入到单独语句的终止符。命令行或脚本处理器将分号视为语句已完成并可发送到服务器的信号。

同样在 JDBC 中,单个语句准备(或执行)应该只是一个实际语句,因此不允许多个语句,因此也不需要分号,对于某些(大多数?)数据库来说,分号不是语句语法的一部分,包含它只是一个语法错误。

如果要执行多个语句,则需要使用单独的执行。从技术上讲,MySQL 确实有一个选项来支持可以通过连接属性启用的多个执行。此行为与 JDBC 规范/API 不兼容,并且会降低您的代码的可移植性。请参阅连接器/JallowMultiQueries的驱动程序/数据源类名称、URL 语法和配置属性

于 2013-08-29T16:28:38.663 回答
12

我想像这样执行sql查询:

statement.execute("select fullName from user where user_id=1; select fullName from user where user_id=2");

只有当您设置了一个数据库连接属性以允许同时执行多个查询时,这才有可能。并且属性名称是allowMultiQueries=true. 必须设置此属性并将其与数据库连接请求一起发送到服务器。一般语法是这样的:

String dbUrl = "jdbc:mysql:///test?allowMultiQueries=true";

这是对那些已经存在的附加连接属性,例如autoReConnect=true等。

allowMultiQueries可接受的属性值为truefalseyesno。任何其他值在运行时都会被拒绝,并带有SQLException.

您必须使用execute( String sql )或其其他变体来获取查询执行的结果。

multiQuerySqlString =  "select fullName from user where user_id=1; ";
multiQuerySqlString += "select fullName from user where user_id=2; ";
// you can multiple types of result sets
multiQuerySqlString += "select last_login from user_logs where user_id=1; ";

boolean hasMoreResultSets = stmt.execute( multiQuerySqlString );

要遍历和处理结果,您需要以下步骤:

int rsNumber = 0;
while ( hasMoreResultSets ) {  
    rsNumber += 1;
    Resultset rs = stmt.getResultSet();

    // based on the structure of the result set,
    // you can handle column values.
    if ( rsNumber == 1 ) {
      while( rs.next() ) {
          // handle your rs here
      } // while rs
    } // if rs is 1
    else if ( rsNumber == 2 ) {
      // call a method using this rs.
      processMyResultSet( rs ); // example
    } // if rs is 2
    // ... etc

    // check whether there exist more result sets  
    hasMoreResultSets = stmt.getMoreResults();  
} // while results

参考

于 2014-03-23T16:35:10.153 回答
-1

不,你不能。您希望通过调用 statement.execute(...) 得到什么?它返回一个 ResultSet(... 这意味着一个表)。

您只需调用“select fullName from user where user_id in (1, 2)”即可返回两个结果。

在 JDBC 语句中使用分号通常很容易出错。一些 JDBC 驱动程序不支持这一点(例如,如果您使用“;”关闭 SQL 语句,IBM 的 DB2 10.x 的 JDBC 驱动程序会引发异常)。

于 2013-08-29T16:08:11.367 回答