コード例 #1
0
 public SqlSession openSession() {
   return openSessionFromDataSource(configuration.getDefaultExecutorType(), null, false);
 }
コード例 #2
0
 public SqlSession openSession(boolean autoCommit) {
   return openSessionFromDataSource(configuration.getDefaultExecutorType(), null, autoCommit);
 }
コード例 #3
0
 public SqlSession openSession(TransactionIsolationLevel level) {
   return openSessionFromDataSource(configuration.getDefaultExecutorType(), level, false);
 }