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.
Procedure
- Call the Close method to release resources.
Use the following code when the application no longer requires a connection to the database:
if( conn != NULL ) {
conn->Close( &ulerr );
}
- Call the Fini method to finalize the ULDatabaseManager object.
Use the following code when closing the application.
ULDatabaseManager.Fini();
Results
The database connection is closed and resources are released.