我使用mySQL工作台创建了一个名为testdb的数据库。然后我通过数据库>连接到数据库连接到它。然后,我用Java(eclipse)编写一些代码到
代码输出显示连接和创建表已完成。
但是当我返回到mySQL时,我在数据库中看不到任何表。谁能帮我一下为什么不创建表?
package database;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
public class main {
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
getConnection();
createTable();
}
public static void createTable() throws Exception {
try {
Connection con = getConnection();
PreparedStatement create = con.prepareStatement("CREATE TABLE IF NOT EXISTS tablename(id int NOT NULL AUTO_INCREMENT, first varchar(255), last varchar(255), PRIMARY KEY(id)");
create.executeUpdate();
}catch(Exception e) {System.out.println(e);}
finally {
System.out.println("Function complete.");
};
}
public static Connection getConnection() throws Exception{
try {
String driver = "com.mysql.jdbc.Driver";
String url = "jdbc:mysql://localhost:3306/testdb";
String username = "root";
String password = "00000";
Class.forName(driver);
Connection conn = DriverManager.getConnection(url, username, password);
System.out.println("Connected");
return conn;
} catch(Exception e) {System.out.println(e);}
return null;
}
}
以下是输出:
已连接
已连接
java.sql.SQLSyntaxErrorException:SQL语法有错误;检查与您的MySQL服务器版本相对应的手册以获取正确的语法,以在第1行的''附近使用
功能已完成。
答案 0 :(得分:0)
您的sql语句中缺少括号)
,正确的是
"CREATE TABLE IF NOT EXISTS tablename(id int NOT NULL AUTO_INCREMENT, first varchar(255), last varchar(255), PRIMARY KEY(id))"