check the manual that corresponds to your MySQL server version for the right syntax
请和你当前的mysql版本的正确语法保持一致,表示语法出现错误,检查sql语句是否正确。
manual :说明书,指南,使用手册
correspond:保持一致
syntax:句法规则
旅游网的学习过程中出现的错误:
1.经过检查,是insert的语法出现了错误,导致异常的发生:
从
insert into tab_user(username,password,realname,birthday,sex,telephone,email,) values(?,?,?,?,?,?,?)
改为:
insert into tab_user(username,password,realname,birthday,sex,telephone,email) values(?,?,?,?,?,?,?)
email后面多加了一个 ' , '号.
2.之前的
insert into tab_user(username,password,name,birthday,sex,telephone,email) values(?,?,?,?,?,?,?)
name为关键字,会和mysql冲突,需要进行转换,在name关键字的前后包裹 ` 符号(位于Tab键的上方),否则会报错。