GetErrorMessage
GetErrorMessage returns any formated error string if available.
unsigned int GetErrorMessage (
char16_t **message
);
Parameters
| message |
An address of a pointer to receive the pointer to the error message. |
Return Values
If the method succeeds, the return value is zero else see
error codes for more details.
Remarks
ObjectDatabase++ deletes any memory used in this method, do not call delete []
after this method has been called.
Example Use
unsinged int error;
CODBPP database
char16_t *message;
if((error = database.OpenDatabase(_T"YourDatabase")) == NO_ERROR
&& (error = database.BeginTransaction()) == NO_ERROR
&& (error = database.OpenTable(1)) == NO_ERROR
&& (error = database.NewObject(1)) == NO_ERROR//Adds an empty object into the table
&& (error = database.AddObject(1)) == NO_ERROR)
error = database.CommitTransacion();
if(error && database.GetErrorMessage(&message) == NO_ERROR)
MessageBox(message);
database.CloseDatabase();//will end transaction, close tables and relase all memory
Also See
Copyright © 2003-2008, Ekky Software Pty. Ltd.