教你如何6秒钟往MySQL插入100万条数据的实现
作者:Bei-Zhen 时间:2024-01-19 02:17:35
一、思路
往MySQL中插入1000000条数据只花了6秒钟!
关键点:
1.使用PreparedStatement对象
2.rewriteBatchedStatements=true 开启批量插入,插入只执行一次,所有插入比较快。
二、 代码
package test0823.demo1;
import java.sql.*;
/**
* @author : Bei-Zhen
* @date : 2020-08-24 0:43
*/
public class JDBC2 {
//static int count = 0;
public static void main(String[] args) {
long start = System.currentTimeMillis();
conn();
long end = System.currentTimeMillis();
System.out.println("耗时:" + (end - start)/1000 + "秒");
}
public static void conn(){
//1.导入驱动jar包
//2.注册驱动(mysql5之后的驱动jar包可以省略注册驱动的步骤)
//Class.forName("com.mysql.jdbc.Driver");
//3.获取数据库连接对象
Connection conn = null;
PreparedStatement pstmt = null;
{
try {
//"&rewriteBatchedStatements=true",一次插入多条数据,只插入一次
conn = DriverManager.getConnection("jdbc:mysql:///test?" + "&rewriteBatchedStatements=true","root","root");
//4.定义sql语句
String sql = "insert into user values(default,?,?)";
//5.获取执行sql的对象PreparedStatement
pstmt = conn.prepareStatement(sql);
//6.不断产生sql
for (int i = 0; i < 1000000; i++) {
pstmt.setString(1,(int)(Math.random()*1000000)+"");
pstmt.setString(2,(int)(Math.random()*1000000)+"");
pstmt.addBatch();
}
//7.往数据库插入一次数据
pstmt.executeBatch();
System.out.println("添加1000000条信息成功!");
} catch (SQLException e) {
e.printStackTrace();
} finally {
//8.释放资源
//避免空指针异常
if(pstmt != null) {
try {
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
if(conn != null) {
try {
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
}
}
三、运行结果
添加1000000条信息成功!
耗时:6秒
来源:https://blog.csdn.net/qq_33591873/article/details/108191988
标签:MySQL,插入,数据
0
投稿
猜你喜欢
关于SQL数据库 msdb.dbo.sp_send_dbmail 函数发送邮件的场景分析
2024-01-14 19:20:11
python数字图像处理实现图像的形变与缩放
2023-01-14 19:45:01
通过Python爬虫代理IP快速增加博客阅读量
2023-08-17 16:17:55
Python初学者必须掌握的25个内置函数详解
2022-07-02 16:09:21
MySQL5.6.40在CentOS7 64下安装过程详解
2024-01-12 21:56:01
随Linux开机自动启动mysql
2009-12-29 10:14:00
Pytorch中index_select() 函数的实现理解
2023-11-26 16:24:32
python实现画桃心表白
2021-05-14 16:27:00
python使用tqdm模块处理文件阅读进度条显示
2022-09-08 11:29:17
Python编写带选项的命令行程序方法
2023-11-18 20:47:35
用ASP显示ACCESS数据库的的GIF图象
2008-11-20 16:35:00
python元组简单介绍
2023-07-31 18:06:12
Django实现简单分页功能的方法详解
2021-02-07 01:54:23
python将文本转换成图片输出的方法
2023-06-20 11:47:47
Django 博客实现简单的全文搜索的示例代码
2023-12-07 10:09:19
SQLServer2005触发器提示其他会话正在使用事务的上下文的解决方法
2024-01-13 05:42:28
《色彩解答》系列之二 色彩比例
2008-02-17 14:38:00
asp Driver和Provider两种连接字符串连接Access时的区别
2011-03-09 11:19:00
解决更改AUTH_USER_MODEL后出现的问题
2023-06-22 08:14:10
Python Pandas中根据列的值选取多行数据
2023-02-16 04:17:59