Contents Index ULConnection class CancelSynchronize method

UltraLite ActiveX User's Guide
  UltraLite ActiveX API Reference
    ULConnection class

Properties


The following are properties of ULConnection:

Prototype Description
AutoCommit As Boolean Indicates the AutoCommit value. If true, all data changes are committed immediately after they are made. Otherwise, changes are not committed to the database until Commit is called. By default, this property is True.
DatabaseID As Long (write-only) Sets the identification number for the connected database. When you write the DatabaseID, you set the database ID value to be used for global autoincrement columns.
DatabaseManager As ULDatabaseManager (read-only) Gets the owning database manager object.
DatabaseNew As Boolean (read-only) Indicates whether there is no database schema loaded. In this case, your application must load a new schema.
ErrorResume As Boolean Indicates the error handling method.
GlobalAutoIncrementUsage As Long (read-only) Gets the percentage of available global autoincrement values that have been used.
LastErrorCode As SQLCodeConstants Gets the last error number, and allows you to clear the previous error code.
LastErrorDescription As String (read-only) Gets the last error description.
LastIdentity As Long (read-only) Gets the most recent value inserted into a column with a default of autoincrement or global autoincrement.
OpenParms As String (read-only) Gets the string used to open the connection to the database.
Schema As ULDatabaseSchema (read-only) Gets the ULDatabaseSchema object which represents the definition of the database.
SQLErrorOffset As Integer (read-only) If PrepareStatement raises an error, indicates the 1-based offset in the SQL statement where the error was noted. If this value is less than or equal to 0, no offset information is available.
SyncParms As ULSyncParms (read-only) Gets the synchronization parameters object.
SyncResult As ULSyncResult (read-only) Gets the results of the most recent synchronization.

Contents Index ULConnection class CancelSynchronize method