UltraLite for MobileVB User's Guide
Understanding UltraLite for MobileVB Development
Connecting to the UltraLite database
Properties of the ULConnection object govern global application behavior, including the following:
Commit behavior By default, UltraLite applications are in AutoCommit mode. Each Insert, Update, or Delete statement or action is committed to the database immediately. You can also set ULConnection.AutoCommit to False to build explicit transaction handling into your application.
For more information, see Transaction processing in UltraLite.
User authentication You can change the user ID and password for the application from the default values of DBA and SQL by using the GrantConnectTo and RevokeConnectFrom methods.
Synchronization A set of objects governing synchronization are accessed from the ULConnection object.
Tables UltraLite tables are accessed using the ULConnection.GetTable method.
Prepared statements SQL statements are accessed using the PreparedStatement method.