查询在MySql工作台中运行,但在Java eclipse中不运行

时间:2014-08-06 12:12:34

标签: java mysql eclipse mysql-workbench

我创建了一个在MySQL工作台中正常工作的查询,但是当我在eclipse中运行它时无效。与数据库的连接工作正常,因为更简单的查询我得到了正确的结果。

java代码:

                String queryAlter = "SELECT count(*) ";
                queryAlter += "INTO @exist ";
                queryAlter += "FROM information_schema.columns ";
                queryAlter += "WHERE table_schema = database() ";
                queryAlter += "and COLUMN_NAME = 'question" + (100 + number + 1)+"' ";
                queryAlter += "AND table_name = '"+ tableName+"'; ";

                queryAlter += "set @query = IF(@exist <= 0, 'alter table "+ tableName+" add column question" + (100 + number + 1)+" varchar(2048) NULL', ";
                queryAlter += "'select \\'Column Exists\\' status'); ";
                queryAlter += "use joomla30; ";
                queryAlter += "prepare stmt from @query; ";

                queryAlter += "EXECUTE stmt;";

我收到了这条消息:

发生错误。也许用户/密码无效 com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException:您的SQL语法中有错误;查看与您的MySQL服务器版本相对应的手册,以便在#qu;设置@query = IF(@exist&lt; = 0,&#39; alter table n0x3c_twoquestions_table,添加列qu&#39;第1行)附近使用正确的语法

查询字符串也是:

 SELECT count(*) INTO @exist FROM information_schema.columns WHERE table_schema = database() and COLUMN_NAME = 'question101' AND table_name = 'n0x3c_twoquestions_table'; set @query = IF(@exist <= 0, 'alter table n0x3c_twoquestions_table add column question101 varchar(2048) NULL', 'select \'Column Exists\' status'); use joomla30; prepare stmt from @query; EXECUTE stmt;

我也在java中试过这个,我从MySQL Query works in PhpMyAdmin but not in JAVA Eclipse读到了:

                String s1 = "SELECT count(*) INTO @exist FROM information_schema.columns WHERE table_schema = database() and COLUMN_NAME = 'question" + (100 + number + 1)+"' AND table_name = '"+ tableName+"'; ";

                String s2 = "set @query = IF(@exist <= 0, 'alter table "+ tableName+" add column question" + (100 + number + 1)+" varchar(2048) NULL', 'select \\'Column Exists\\' status'); ";
                String s3 = "use joomla30; ";
                String s4 = "prepare stmt from @query; ";

                stmt.addBatch(s1);
                stmt.addBatch(s2);    
                stmt.addBatch(s3);   
                stmt.addBatch(s4);

                stmt.executeBatch();
                conn1.commit();

但我有这个错误:

java.sql.BatchUpdateException:无法通过executeUpdate()发出SELECT。

1 个答案:

答案 0 :(得分:1)

您可以使用两种不同的查询。

首先要检查列的存在:

String countQuery = "select count(*) from information_schema.columns WHERE table_schema = database() and COLUMN_NAME = 'question106' and table_name='n0x3c_twoquestions_table'";

然后,如果countQuery返回0,则可以执行alterQuery

String alterQuery = "alter table n0x3c_twoquestions_table add column question106 varchar(2048) NULL";

如果您不想使用两个不同的查询,则可以通过异常捕获处理此问题:

String alterQuery = "alter table n0x3c_twoquestions_table add column question106 varchar(2048) NULL";
try (Connection conn = ds.getConnection(); PreparedStatement ps = conn.prepareStatement(alterQuery)) {
    ps.execute();
} catch (SQLException e) {
    if (e.getErrorCode() == 1060) {
        columnExists = true;
    } else {
        // TODO handle exception
    }
}

我找到了错误代码MySQL Server error codes

相关问题