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

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

Introduction

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

Prototype

public String getFailingSqlStatement() 

Source Link

Document

Returns the SQL statement that caused the failure (not the parameterArray).

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());
}