SQLiteThreadingMode

Entries

Link copied to clipboard

This option sets the threading mode to "multi-thread". In other words, it disables mutexing on database connection and prepared statement objects. The application is responsible for serializing access to database connections and prepared statements. But other mutexes are enabled so that SQLite will be safe to use in a multi-threaded environment as long as no two threads attempt to use the same database connection at the same time.

Link copied to clipboard

This option sets the threading mode to "serialized". In other words, this option enables all mutexes including the recursive mutexes on database connection and prepared statement objects. In this mode the SQLite library will itself serialize access to database connections and prepared statements so that the application is free to use the same database connection or the same prepared statement in different threads at the same time.

Link copied to clipboard

This option sets the threading mode to "single-thread". In other words, it disables all mutexing and puts SQLite into a mode where it can only be used by a single thread.

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.