兔子-- Can not issue data manipulation statements with executeQuery()

前端之家收集整理的这篇文章主要介绍了兔子-- Can not issue data manipulation statements with executeQuery()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

 

Can not issue data manipulation statements with executeQuery()

 

出错地方:st.executeQuery("insert  into  student  values(“1”,“2”,“3”)") ;


 如果你的sql 语句是 update,insert等更新语句,用statement的execute()


如果sql语句是查询语句则用statement.executeQuery()


 如果更新语句用的是statement的executeQuery()就会出现上诉问题

猜你在找的PHP相关文章