public static boolean getLogin(String name,String password)
throws SQLException{
PesultSet rs=findForResultSet("select*from tb_userlist where name=""+name+ ""and pass=""+password+""");
return rs.next();}
这里出错select*from tb_userlist where name=""+name+ ""and pass=""+password+""
应该是select*from tb_userlist where name=' "+name+ " ' and pass=' "+password+"' 这个吧
这些符号你是怎么判断的呢?
@Sony喜乐: 你传入的name和password是string类型,作为sql语句条件的时候加上单引号,你可以拿没有加单引号的sql语句和加了单引号的sql语句去数据库执行一下看结果
@如此低调的男人: 原来这样,谢谢!