Schema information in UltraLite C++
You can programmatically retrieve result set or database structure descriptions.
These descriptions are known as schema information, and this information is available
through the UltraLite C API schema classes.
Error handling
The UltraLite C++ API includes a ULError object that should be used to retrieve error information. Several methods in the API return a boolean value, indicating whether the method call was successful. In some instances, null is returned when an error occurs.
Closing the UltraLite database connection
Release software resources when they are no longer being used to prevent the UltraLite database file from remaining in use for as long as the application has a connection to the database.
How to build and deploy UltraLite C++ applications
When building a C++ application that does not use the UltraLite engine, you can
either link to a static UltraLite runtime library or, on Windows and Windows Mobile, you can
link to an import library and load the UltraLite runtime code dynamically when the
application starts.