gpt4 book ai didi

java - JDBC PreparedStatement导致MySQL语法错误

转载 作者:行者123 更新时间:2023-11-29 04:22:01 26 4
gpt4 key购买 nike

我收到错误“您的 SQL 语法有错误;请查看与您的 MySQL 服务器版本对应的手册,了解在第 1 行的‘'orderr''附近使用的正确语法” - 所以我假设错误是我使用了两个 ' 但在我的代码中我没有使用任何 '。注意该表实际上名为 orderr。

public void insertIntoDatabase(String table, Object... entries) {       // take a table and 
Connection con = connect(); //add entries
PreparedStatement preparedStatement = null;
PreparedStatement preparedStatement2 = null;
ResultSet rs = null;

StringBuffer columnNames = new StringBuffer();
StringBuffer sbEntries = new StringBuffer();
for (int i = 0; i < entries.length; i++) {
if (entries[i] instanceof Integer)
sbEntries.append((Integer) entries[i]);
else if (entries[i] instanceof String)
sbEntries.append((String) entries[i]);

if (i != entries.length - 1)//if not last entry add
sbEntries.append(" ,"); // a ' ,'.
}
try {
preparedStatement = con.prepareStatement("select * from ? ;");
preparedStatement.setString(1, table);
preparedStatement2 = con
.prepareStatement("Insert into ?( ? ) values ( ? );");
ResultSet resultSet = preparedStatement.executeQuery(); // get the
// number of
// columns
ResultSetMetaData rsmd; // for the table
rsmd = resultSet.getMetaData();
int columnCount = rsmd.getColumnCount();
for (int i = 1; i < columnCount + 1; i++) { // get column names, add to
columnNames.append(rsmd.getColumnName(i)); // to sb
if (i != columnCount)
columnNames.append(" ,");
}
columnCount = rsmd.getColumnCount();
preparedStatement2.setString(1, table);
preparedStatement2.setString(2, columnNames.toString()); //add sb's to statement
preparedStatement2.setString(3, sbEntries.toString());
preparedStatement2.executeUpdate();

} catch (SQLException e) {
System.out.println("2" + e.getMessage());
}
finally{
try {
if (rs != null) {
rs.close();
}
if (preparedStatement != null) {
preparedStatement.close();
}
if(preparedStatement2 != null){
preparedStatement2.close();
}
if (con != null) {
con.close();
}

} catch (SQLException e) {
System.out.print("3" +e.getMessage());
}

}

}

最佳答案

在大多数数据库中,您不能参数化对象名称(如表名称),在 MySQL 中,理论上您可以,因为默认情况下 MySQL Connector/J 不使用服务器端参数,而是在将查询发送到服务器之前重写查询。但是,该值将作为带引号的字符串插入,而对象名称不能是带引号的字符串,因此它仍然不起作用。

所以 INSERT INTO ?SELECT ... FROM ? 将不起作用,因为它会生成 INSERT INTO 'theTable'SELECT ... FROM 'theTable'

对象名称需要成为实际查询的一部分。不要为它们使用参数。大多数其他数据库(或它们的驱动程序)会因为在这个位置有参数而抛出异常。

关于java - JDBC PreparedStatement导致MySQL语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21139757/

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