java.sql.SQLException:Parameter index out of range (1 > number of parameters,which is 0).private int check(String user_name,String user_code) throws SQLException {\x05\x05// TODO Auto-generated method stub\x05\x05PreparedStatement stmt = null;\x05Str

来源:学生作业学帮网 编辑:学帮网 时间:2024/05/16 16:34:23

java.sql.SQLException:Parameter index out of range (1 > number of parameters,which is 0).
private int check(String user_name,String user_code) throws SQLException {
\x05\x05// TODO Auto-generated method stub
\x05\x05PreparedStatement stmt = null;
\x05String sql ="select * from log where name='?' and code='?';";
\x05stmt = Server.con.prepareStatement(sql);
\x05stmt.setString(1,user_name);
\x05stmt.setString(2,user_code);
\x05if(stmt.executeQuery(sql)==null){
\x05\x05return 0;
\x05}
\x05 return 1;
\x05}

String sql ="select * from log where name='?' and code='?';";改成
String sql ="select * from log where name=?and code=?“;