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

697 단어 자바mysqljdbc
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))");

데이터베이스 시트 를 만 들 때 userid 가 비어 있 지 않 습 니 다. "notnull" 로 정의 되 었 습 니 다.
3. 해결 방법
   맞 춤 사용자id 시 "user id int not null" 로 변경 해 야 합 니 다.

좋은 웹페이지 즐겨찾기