ODBC-related definitions in sculptor.hΒΆ
The following values related to ODBC are defined in <sculptor.h>:
Database types - see Declaring an ODBC database for further details.
DBT_SCULPTOR |
Sculptor keyed file |
DBT_ODBC |
ODBC generic |
Database flags - see Declaring an ODBC database for further details.
DBFL_OPTIMISTIC_LOCKING |
Force optimistic locking |
DBFL_IGNORE_ CATALOG |
Ignore catalog usage |
DBFL_IGNORE_ SCHEMA |
Ignore schema usage |
DBFL_CASE_SENSITIVE |
Put quotes round SQL identifiers |
DBFL_MULTICONNECT |
Separate connection for each cursor |
DBFL_UNSIGNED_KEYS |
Convert i2, i4 and i8 keys to unsigned binary, so that positive values are sorted first |
DBFL_ACCESS_MULTIUSER |
Make Access multi-user safer (but slower) |
DBFL_DRIVER_COMPLETE |
Affects the ODBC driver connection (SQLDriverConnect()) |
DBFL_RECREATE_LOGFILE |
Recreate the error log file |
New in version 6.3.0: See the new features. |
|
DBFL_COMBINE_PACKED_TEXT |
Combine packed text into a single SQL column |
DBFL_IGNORE_FILL_FIELDS |
Ignore field names spare[0-9] and fill[0-9] |
Property sets. These have the prefix ODBC_SQL, and are used by the property function odbc().
Statement attributes for an ODBC cursor. These have the prefix SQL_ATTR_, and are used by the function sql_set_stmt_attr().
Values for the SQL_ATTR_CURSOR_TYPE attribute. These have the prefix SQL_CURSOR_. See sql_set_stmt_attr().
Values for the SQL_ATTR_CONCURRENCY attribute. These have the prefix SQL_CONCUR_. See sql_set_stmt_attr().
Mirror flags for use with the set_mirror_source() function.
MIRROR_RECREATE_LOGFILE |
Force a new empty logfile rather than appending to existing one. |
RELATED TOPICS |