String sql="select * from t_log where name=? and pw=?";
在運行到這句的時候產生以下錯誤
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '? and pw=?' at line 1
換成
String sql="select * from t_log"; 可以執行
其他的sql語句
String sql = "insert into t_log(name,pw) values(?,?)"; 也能執行
求解釋,是不是where的用發錯了啊
不是一個問題麼,http://ask.csdn.net/questions/157182,用錯了statement。