java连接mysql删除时老出现下面的问题,请大神帮忙看一下!!!

publicintdeleteStudent(Stringid){Connectioncon=null;PreparedStatementpstmt=null;intn=... public int deleteStudent(String id){
Connection con = null;
PreparedStatement pstmt = null;
int n =0;
try {
con = DBUtil.getConnection();
String sql = "delete base_students where id=?";
pstmt = con.prepareStatement(sql);
pstmt.setString(1, id);
n= pstmt.executeUpdate();
} catch (SQLException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}finally{
DBUtil.close(con, pstmt, null);
}
return n;

public class Test {

public static void main(String[] args) {
us.deleteStudent("5");
}
}
出现的错误为:

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: 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 'where id='5'' at line 1
展开
 我来答
旅初彤2B
2015-08-17 · TA获得超过2.6万个赞
知道大有可为答主
回答量:4.4万
采纳率:65%
帮助的人:5274万
展开全部
你看看你数据库中的base_students这张表中id这个字段是什么类型?
追问
varchar类型的
追答
那么你SQL语句有问题,应该这么写delete base_students where id="+“+"'”+“?”+"'";
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式