Mybatis批量更新返回-2147482646

在使用ExecutorType批量更新时,遇到返回值为-2147482646的问题。该问题源于特定ExecutorType下,更新操作的counts丢失。主要涉及Mybatis的Executor接口实现与StatementHandler的处理差异。
摘要由CSDN通过智能技术生成

当ExecutorType为Batch时,更新操作返回的update counts会丢失,返回的值为-2127485646,原因是BatchExecutor中的doUpdate方法:

public static final int BATCH_UPDATE_RETURN_VALUE = Integer.MIN_VALUE + 1002;

  public BatchExecutor(Configuration configuration, Transaction transaction) {
   
    super(configuration, transaction);
  }

  @Override
  public int doUpdate(MappedStatement ms, Object parameterObject) throws SQLException {
   
    final Configuration configuration = ms.getConfiguration();
    final StatementHandler handler = configuration.newStatementHandler(this, ms, parameterObject, RowBounds.DEFAULT, null, null)
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值