数据库
首页 > 数据库> > JDBC复习:创建MySQL数据表

JDBC复习:创建MySQL数据表

作者:互联网

 1         try {
 2             conn=JDBCUtil.getConnection();
 3             preparedStatement = conn.prepareStatement(DROP_TABLE_1);
 4             preparedStatement.executeUpdate();
 5             preparedStatement= conn.prepareStatement(CREATE_TABLE_1_SQL);
 6             preparedStatement.executeUpdate();
 7             preparedStatement = conn.prepareStatement(DROP_TABLE_2);
 8             preparedStatement.executeUpdate();
 9             preparedStatement= conn.prepareStatement(CREATE_TABLE_2_SQL);
10             preparedStatement.executeUpdate();
11             conn.setAutoCommit(false);
12             conn.commit();
13             JDBCUtil.release(conn,preparedStatement);
14             
15         } catch (SQLException e) {
16             e.printStackTrace();
17             System.out.println("出现问题!建表失败!");
18         }

因为自己很久没写JDBC的操作了所以出现了一些错误和误区

1、preparedStatement = conn.prepareStatement(DROP_TABLE_1);

   preparedStatement.executeUpdate();

   这两行代码,第一行是把要执行的sql语句作为参数传到preparedStatement,preparedStatement.executeUpdate();是把这一条sql语句放到缓冲区,每一次只能放一个完整的sql语句,然后就要写一次executeUpdate方法。

2、conn.setAutoCommit( )这个方法要把自动提交事务设置为false,然后再手动调用commit方法。

标签:JDBC,executeUpdate,prepareStatement,sql,数据表,preparedStatement,MySQL,TABLE,conn
来源: https://www.cnblogs.com/rainbow-1/p/15549710.html