在Java中,我们可以使用JDBC(Java Database Connectivity)来批量执行SQL语句,以下是一个简单的示例,展示了如何使用PreparedStatement和addBatch()方法来批量执行SQL语句。
1、导入所需的库
import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.SQLException;
2、加载数据库驱动
public static void loadDriver() { try { Class.forName("com.mysql.jdbc.Driver"); } catch (ClassNotFoundException e) { e.printStackTrace(); } }
3、建立数据库连接
public static Connection getConnection() { String url = "jdbc:mysql://localhost:3306/test"; String username = "root"; String password = "123456"; Connection connection = null; try { connection = DriverManager.getConnection(url, username, password); } catch (SQLException e) { e.printStackTrace(); } return connection; }
4、批量执行SQL语句
public static void executeBatch(Connection connection) { String sql = "INSERT INTO users (name, age) VALUES (?, ?)"; try { PreparedStatement preparedStatement = connection.prepareStatement(sql); for (int i = 0; i < 10; i++) { preparedStatement.setString(1, "User" + i); preparedStatement.setInt(2, 20 + i); preparedStatement.addBatch(); } int[] result = preparedStatement.executeBatch(); System.out.println("批量插入成功,影响行数:" + result.length); } catch (SQLException e) { e.printStackTrace(); } finally { if (connection != null) { try { connection.close(); } catch (SQLException e) { e.printStackTrace(); } } } }
5、主函数调用
public static void main(String[] args) { loadDriver(); Connection connection = getConnection(); executeBatch(connection); }
这个示例中,我们首先导入了所需的库,然后加载了数据库驱动并建立了数据库连接,接着,我们定义了一个批量执行SQL语句的方法,该方法使用PreparedStatement和addBatch()方法来批量插入数据,在主函数中调用这些方法来执行批量插入操作。
最新评论
本站CDN与莫名CDN同款、亚太CDN、速度还不错,值得推荐。
感谢推荐我们公司产品、有什么活动会第一时间公布!
我在用这类站群服务器、还可以. 用很多年了。