Home Home

EndTransaction

EndTransaction is used to release the database without closing the database, it can also be used to change the mode of the transaction.
unsigned int EndTransaction(
);

Parameters

void

Return Values

If the method succeeds, the return value is zero else see error codes for more details.

Remarks

  • Need not be called if the database is to be closed through CloseDatabase or through the destructor.
  • Example Use

    CODBPP database;
    unsigned int error;
    char16_t *message;
    if(database.OpenDatabase(_T"YourDatabse") == NO_ERROR){
       while(error == NO_ERROR){
          if((error = database.BeginTransation()) == NO_ERROR){
             ...
          }
          if(error && database.GetErrorMessage(&message) == NO_ERROR)
             MessageBox(message);
          database.EndTransaction();
       }
    }
    database.CloseDatabase();
    

    Also See

    AbortTransaction, CommitTransaction, BeginTransaction

    Copyright © 2003-2008, Ekky Software Pty. Ltd.