コード例 #1
0
ファイル: BasicHandle.java プロジェクト: nezhazheng/jdbi
 public void close() {
   if (!closed) {
     statementBuilder.close(getConnection());
     try {
       connection.close();
     } catch (SQLException e) {
       throw new UnableToCloseResourceException("Unable to close Connection", e);
     } finally {
       log.logReleaseHandle(this);
       closed = true;
     }
   }
 }
コード例 #2
0
ファイル: BasicHandle.java プロジェクト: nezhazheng/jdbi
 /**
  * Rollback a transaction to a named checkpoint
  *
  * @param checkpointName the name of the checkpoint, previously declared with {@see
  *     Handle#checkpoint}
  */
 public Handle rollback(String checkpointName) {
   final long start = System.nanoTime();
   transactions.rollback(this, checkpointName);
   log.logRollbackToCheckpoint((System.nanoTime() - start) / 1000000L, this, checkpointName);
   return this;
 }
コード例 #3
0
ファイル: BasicHandle.java プロジェクト: nezhazheng/jdbi
 /**
  * Release the named checkpoint, making rollback to it not possible.
  *
  * @return The same handle
  */
 public Handle release(String checkpointName) {
   transactions.release(this, checkpointName);
   log.logReleaseCheckpointTransaction(this, checkpointName);
   return this;
 }
コード例 #4
0
ファイル: BasicHandle.java プロジェクト: nezhazheng/jdbi
 /**
  * Create a transaction checkpoint (savepoint in JDBC terminology) with the name provided.
  *
  * @param name The name of the checkpoint
  * @return The same handle
  */
 public Handle checkpoint(String name) {
   transactions.checkpoint(this, name);
   log.logCheckpointTransaction(this, name);
   return this;
 }
コード例 #5
0
ファイル: BasicHandle.java プロジェクト: nezhazheng/jdbi
 /** Rollback a transaction */
 public Handle rollback() {
   final long start = System.nanoTime();
   transactions.rollback(this);
   log.logRollbackTransaction((System.nanoTime() - start) / 1000000L, this);
   return this;
 }
コード例 #6
0
ファイル: BasicHandle.java プロジェクト: nezhazheng/jdbi
 /** Commit a transaction */
 public Handle commit() {
   final long start = System.nanoTime();
   transactions.commit(this);
   log.logCommitTransaction((System.nanoTime() - start) / 1000000L, this);
   return this;
 }
コード例 #7
0
ファイル: BasicHandle.java プロジェクト: nezhazheng/jdbi
 /** Start a transaction */
 public Handle begin() {
   transactions.begin(this);
   log.logBeginTransaction(this);
   return this;
 }