出错原文:You have an error in your SQL syntax; check the manual th at corresponds to your MySQL server version for the right syntax to use near ‘where id=‘15’’ at line 1
找了好几个小时脑阔疼,最后终于被我找到了,原来是在sql语句中的一个小错误,,多写了一个逗号,网上查了好久好久的资料都没怎么有用,最后发现还是细心是最有用的,但愿以后自己长点心吧~~~
错误代码:
let sql = 'update book set name=?,author=?,category=?,description=?, where id=?';
正确代码:
let sql = 'update book set name=?,author=?,category=?,description=? where id=?';
最后mysql正常跑起来了,首先要细心细心细心,其次出错了一定要按照错误提示先排除语法错误,然后在看看是否是其他的错误~~~