mysql PreparedStatement executeBatch SQL语句的问题

今天在使用executeBatch时,使用一个很简单的表

CREATE TABLE IF NOT EXISTS `fnbl_dummy` (
  `id` varchar(32) NOT NULL,
  `userid` bigint(20) NOT NULL,
  `last_update` bigint(20) NOT NULL,
  `status` char(1) NOT NULL,
  `p_content` varchar(200) NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

做批量插入

                        String SQL_INSERT_INTO_FNBL_DUMMY = "INSERT INTO fnbl_dummy(id,userid,last_update,status,p_content) VALUES (?,?,?,?,?);";
                        Connection con = null;
			PreparedStatement ps = null;
			try {
				con = getUserDataSource().getRoutedConnection(userId);
				con.setAutoCommit(false);
				ps = con.prepareStatement(SQL_INSERT_INTO_FNBL_DUMMY);
				
				for (DummyWrapper item : items) {
					Timestamp lastUpdate = item.getLastUpdate();
					if (lastUpdate == null) {
						lastUpdate = new Timestamp(System.currentTimeMillis());
					}
					
					ps.setString(1, item.getId());
					ps.setLong(2, Long.parseLong(this.userId));
					ps.setLong(3, lastUpdate.getTime());
					ps.setString(4, String.valueOf(Def.PIM_STATE_NEW));
					ps.setString(5, StringUtils.left(item.getContent(), SQL_LASTNAME_DIM));
					ps.addBatch();
				}
				
				int []len = ps.executeBatch();
				con.commit();
				return len.length;
			} catch (Exception e) {
				log.error(e.toString());
				throw new DAOException("Error adding dummy items.", e);
			} finally {
				DBTools.close(con, ps, null);
			}
结果运行是单条测试一直OK,多条测试一直提示“java.sql.BatchUpdateException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ”,查找原因竟然是因为SQL语句最后的";"分号问题,无语


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在Java中执行SQL文件并将上亿条INSERT语句插入MySQL可以采用以下步骤: 1. 将SQL文件读取到Java程序中。 2. 将SQL文件中的所有INSERT语句拆分成单个语句。 3. 将单个INSERT语句批量执行,使用JDBC的批量处理功能可以大幅提高性能。可以使用PreparedStatement和addBatch方法实现。 4. 在批量执行完所有INSERT语句后,需要调用executeBatch方法提交事务。 以下是一个简单的示例代码: ```java try { // 读取SQL文件 BufferedReader reader = new BufferedReader(new FileReader("file.sql")); String line; StringBuilder stringBuilder = new StringBuilder(); while ((line = reader.readLine()) != null) { stringBuilder.append(line); } reader.close(); // 拆分INSERT语句 String[] insertStatements = stringBuilder.toString().split(";"); Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/database", "username", "password"); PreparedStatement preparedStatement = connection.prepareStatement(""); // 批量执行INSERT语句 for (String insertStatement : insertStatements) { preparedStatement.addBatch(insertStatement); } preparedStatement.executeBatch(); connection.commit(); } catch (IOException | SQLException e) { e.printStackTrace(); } ``` 需要注意的是,这个代码示例仅仅是一个简单的示例,实际应用中还需要考虑以下问题: 1. SQL文件中可能包含多种类型的语句,需要进行语句类型的判断。 2. 在批量执行INSERT语句时,需要注意内存消耗和数据库连接池的使用。 3. 在执行过程中需要考虑异常处理和事务控制。 4. 对于大数据量的插入操作,可能需要采用多线程或分布式处理。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值