Interface DBStatementObserver


public interface DBStatementObserver
Interface that must be implemented by the objects that want to notify the operating phases of a DBStatement
  • Method Details

    • onStatementCreated

      void onStatementCreated(DBStatement dbs)
      Notifies the instantiation of a new DBStatement
      Parameters:
      dbs - DBStatement ready to execute SQL commands
    • onStatementReleased

      void onStatementReleased(DBStatement dbs)
      Notifies the release of the DBStatement
      Parameters:
      dbs - DBStatement released and not more usable