Example usage for org.apache.ibatis.executor BatchExecutorException getFailingStatementId

List of usage examples for org.apache.ibatis.executor BatchExecutorException getFailingStatementId

Introduction

In this page you can find the example usage for org.apache.ibatis.executor BatchExecutorException getFailingStatementId.

Prototype

public String getFailingStatementId() 

Source Link

Document

Returns the statement id of the statement that caused the failure.

Usage

From source file:com.ibatis.sqlmap.engine.execution.BatchException.java

License:Apache License

public BatchException(BatchExecutorException e) {
    this(e.getMessage(), e.getBatchUpdateException(), e.getSuccessfulBatchResults(), e.getFailingStatementId(),
            e.getFailingSqlStatement());
}