使用 MySQL 和 JDBC 运行.sql脚本
我开始在JDBC上使用MySQL。
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql:///x", "x", "x");
stmt = conn.createStatement();
stmt.execute( "CREATE TABLE amigos" +
"("+
"id int AUTO_INCREMENT not null,"+
"nombre char(20) not null,"+
"primary key(id)" +
")");
我有3-4个表要创建,这看起来并不好。
有没有办法从MySQL JDBC运行.sql脚本?