An odb_String object is used to specify a character string. The odb_String object provides a convenient means of storing and passing strings, along with a simple interface to append and modify the data stored in the string.
This constructor creates an odb_String object from a char*. Any method that accepts an odb_String argument will also accept a char*.
odb_String(const char* string) odb_String()
Required argument
A char* to initialize the odb_String.
Optional arguments
Return value
An odb_String object.
Exceptions
This method adds characters to an odb_String object.
void append(const odb_String& string);
Required arguments
An odb_String to be appended to the contents of odb_String.
Optional arguments
Return value
Exceptions