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/04/27 17:37:45
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

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
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}

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
String sql ="select * from log where name='?' and code='?';";改成
String sql ="select * from log where name=?and code=?“;