Interface DbTransaction

All Superinterfaces:
DbExecute

public interface DbTransaction extends DbExecute
Database transaction. Holds a single transaction to the database (if supported). The transaction completes once the commit() method is called.
  • Method Details

    • commit

      void commit()
      Complete the transaction represented by this DbTransaction instance.
    • rollback

      void rollback()
      Rollback the transaction represented by this DbTransaction instance.