码迷,mamicode.com
首页 > 其他好文 > 详细

Can not issue data manipulation statements with executeQuery()

时间:2018-07-09 19:13:37      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:targe   sdn   not   article   can   style   iss   span   data   

Can not issue data manipulation statements with executeQuery()

 

原因是这句:st.executeQuery("insert  into  student  values(‘"+name+"‘,‘"+age+"‘,‘"+introduce+"‘)") ;

我是看了书上一个例子,然后开始模仿,发现问题后,发现书上其他程序语句都是用这句,

后来看了几个网页,才明白这句应该该成这样子:st.execute("insert  into  student  values(‘"+name+"‘,‘"+age+"‘,‘"+introduce+"‘)") ;

最后总结:如果你的SQL 语句是诸如update,insert的更新语句,应该用statement的execute()方法,如果用的是statement的executeQuery()就会出现上诉问题

转自:https://blog.csdn.net/cherishme1988/article/details/7399225

Can not issue data manipulation statements with executeQuery()

标签:targe   sdn   not   article   can   style   iss   span   data   

原文地址:https://www.cnblogs.com/xiaodongxiaodong/p/9284907.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!