Obtains the value of a database property.
public virtual const char * GetDatabaseProperty(const char * propName)
propName The name of the property being requested.
A pointer to a string buffer containing the database property value is returned when run successfully; otherwise, returns NULL.
The returned value points to a static buffer whose contents may be changed by any subsequent UltraLite call, so you must make a copy of the value if you need to save it.
The following example illustrates how to get the value of the CharSet database property.
const char * charset = GetDatabaseProperty( "CharSet" );