gpt4 book ai didi

JavaPreparedStatement和AlterTable语法错误

转载 作者:行者123 更新时间:2023-11-29 06:17:58 25 4
gpt4 key购买 nike


我必须使用PreparedStatement 在表的字段上创建索引。我要执行的查询如下:

ALTER TABLE esa_matrix ADD INDEX doc_index (id_doc) 

因此,我创建了一个具有相同查询文本的 PreparedStatement 实例,并对其执行 executeUpdate() 方法。但在执行时我收到 SQL 语法错误。这是 PreparedStatement 实例的创建:

PreparedStatement ps = conn.prepareStatement("ALTER TABLE "+ESATable+ "ADD INDEX doc_index ("+idDocLabel+")");                                  
ps.executeUpdate();
ps.close();

我得到这个 SQLException:

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 'doc_index (id_doc)' at line 1

如何解决这个问题?
预先感谢,
安东尼奥

最佳答案

您忘记了“ADD”之前的空格。

关于JavaPreparedStatement和AlterTable语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5416849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com