Example usage for org.apache.ibatis.session Configuration newExecutor

List of usage examples for org.apache.ibatis.session Configuration newExecutor

Introduction

In this page you can find the example usage for org.apache.ibatis.session Configuration newExecutor.

Prototype

public Executor newExecutor(Transaction transaction) 

Source Link

Usage

From source file:com.ibatis.sqlmap.engine.transaction.user.UserProvidedTransaction.java

License:Apache License

public UserProvidedTransaction(Configuration configuration, Connection connection) {
    this.executor = configuration.newExecutor(new JdbcTransaction(connection));
}