gpt4 book ai didi

java - JDBC UPDATE With preparedStatement 导致 java.sql.SQLException : Parameter index out of range (3 > number of parameters, 这是 2)

转载 作者:行者123 更新时间:2023-11-29 04:00:24 25 4
gpt4 key购买 nike

<分区>

我面临java.sql.SQLException: Parameter index out of range (3 > number of parameters, is 2). 在更新 'reset_info'< 的一两列时/strong> 表,其中有五列(id、mobile_tower_id、reset_value、date_time、clientip)。'id' 是自动生成的主键。我想更新特定行的“reset_value”

下面是源码:

        Class.forName("com.mysql.jdbc.Driver");
System.out.println("Connecting to database...");
conn = DriverManager.getConnection(DB_URL, USER, PASS);

String sql = "UPDATE reset_info SET reset_value = ? WHERE id = ?";
PreparedStatement ps = conn.prepareStatement(sql);
ps.setInt(1, 100);
ps.setInt(3, 1000);

ps.executeUpdate();
conn.close();

下面是我的堆栈跟踪:

 Connecting to database...
java.sql.SQLException: Parameter index out of range (3 > number of parameters, which is 2).
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1078)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920)
at com.mysql.jdbc.PreparedStatement.checkBounds(PreparedStatement.java:3813)
at com.mysql.jdbc.PreparedStatement.setInternal(PreparedStatement.java:3795)
at com.mysql.jdbc.PreparedStatement.setInternal(PreparedStatement.java:3840)
at com.mysql.jdbc.PreparedStatement.setInt(PreparedStatement.java:3784)
at cdot.dsa.cfms.dbconnect.NewClass.main(NewClass.java:38)

是否必须为表格的每一列放置占位符('?')?

通过 java.sql.Statement 更新单个列是有效的,但我遇到了 java.sql.preparedStatement 的异常。

请帮忙。概念性想法将受到高度赞赏。

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