码迷,mamicode.com
首页 > 数据库 > 详细

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxError Exception

时间:2015-02-11 23:25:26      阅读:362      评论:0      收藏:0      [点我收藏+]

标签:java   mysql   jdbc   

1、错误描述

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxError Exception: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 ‘notnull,user_name varchar(255) )‘ at line 1


2、错误原因

StringBuilder sql = new StringBuilder();
sql.append("create table t_you_su_ta(");
sql.append(" id int primary key,");
sql.append(" user_id int notnull,");
sql.append(" user_name varchar(255))");

在拼接创建数据库表时,要使user_id不为空,定义成了“notnull”


3、解决办法

   在拼接user_id时,应改成“user_id int not null”

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxError Exception

标签:java   mysql   jdbc   

原文地址:http://blog.csdn.net/you23hai45/article/details/43741639

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