Package-level declarations

Properties

Link copied to clipboard
Link copied to clipboard
external val SQLITE_ANALYZE: Double
Link copied to clipboard
external val SQLITE_ATTACH: Double
Link copied to clipboard

Abort when a change encounters a conflict and roll back database.

Link copied to clipboard

This constant is passed to the conflict handler while processing an INSERT change if the operation would result in duplicate primary key values.

Link copied to clipboard

The conflict handler is invoked with this constant when processing a DELETE or UPDATE change if a row with the required PRIMARY KEY fields is present in the database, but one or more other (non primary-key) fields modified by the update do not contain the expected "before" values.

Link copied to clipboard

If foreign key handling is enabled, and applying a changeset leaves the database in a state containing foreign key violations, the conflict handler is invoked with this constant exactly once before the changeset is committed. If the conflict handler returns SQLITE_CHANGESET_OMIT, the changes, including those that caused the foreign key constraint violation, are committed. Or, if it returns SQLITE_CHANGESET_ABORT, the changeset is rolled back.

Link copied to clipboard

The conflict handler is invoked with this constant when processing a DELETE or UPDATE change if a row with the required PRIMARY KEY fields is not present in the database.

Link copied to clipboard

Conflicting changes are omitted.

Link copied to clipboard

Conflicting changes replace existing values. Note that this value can only be returned when the type of conflict is either SQLITE_CHANGESET_DATA or SQLITE_CHANGESET_CONFLICT.

Link copied to clipboard
external val SQLITE_COPY: Double
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
external val SQLITE_DELETE: Double
Link copied to clipboard
external val SQLITE_DENY: Double

Deny the operation and cause an error to be returned.

Link copied to clipboard
external val SQLITE_DETACH: Double
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
external val SQLITE_DROP_VIEW: Double
Link copied to clipboard
Link copied to clipboard
external val SQLITE_FUNCTION: Double
Link copied to clipboard
external val SQLITE_IGNORE: Double

Ignore the operation and continue as if it had never been requested.

Link copied to clipboard
external val SQLITE_INSERT: Double
Link copied to clipboard
external val SQLITE_OK: Double

Allow the operation to proceed normally.

Link copied to clipboard
external val SQLITE_PRAGMA: Double
Link copied to clipboard
external val SQLITE_READ: Double
Link copied to clipboard
external val SQLITE_RECURSIVE: Double
Link copied to clipboard
external val SQLITE_REINDEX: Double
Link copied to clipboard
external val SQLITE_SAVEPOINT: Double
Link copied to clipboard
external val SQLITE_SELECT: Double
Link copied to clipboard
Link copied to clipboard
external val SQLITE_UPDATE: Double