BundledSQLiteKt

Added in 2.5.0-alpha04

public final class BundledSQLiteKt


Summary

Constants

static final int

Create the database if it does not already exist.

static final int

The database connection will use extended result codes.

static final int

The database connection will use the "serialized" threading mode.

static final int

Opens the database as a in-memory database.

static final int

The filename is not allowed to contain a symbolic link.

static final int

The database connection will use the "multi-thread" threading mode.

static final int

Opens the database in read-only mode.

static final int

Opens the database for reading and writing.

static final int

Interpret the filename as a URI.

Constants

SQLITE_OPEN_CREATE

public static final int SQLITE_OPEN_CREATE = 4

Create the database if it does not already exist.

SQLITE_OPEN_EXRESCODE

public static final int SQLITE_OPEN_EXRESCODE = 33554432

The database connection will use extended result codes.

SQLITE_OPEN_FULLMUTEX

public static final int SQLITE_OPEN_FULLMUTEX = 65536

The database connection will use the "serialized" threading mode.

See also SQLite In Multi-Threaded Applications

SQLITE_OPEN_MEMORY

public static final int SQLITE_OPEN_MEMORY = 128

Opens the database as a in-memory database.

SQLITE_OPEN_NOFOLLOW

public static final int SQLITE_OPEN_NOFOLLOW = 16777216

The filename is not allowed to contain a symbolic link.

SQLITE_OPEN_NOMUTEX

public static final int SQLITE_OPEN_NOMUTEX = 32768

The database connection will use the "multi-thread" threading mode.

See also SQLite In Multi-Threaded Applications

SQLITE_OPEN_READONLY

public static final int SQLITE_OPEN_READONLY = 1

Opens the database in read-only mode.

SQLITE_OPEN_READWRITE

public static final int SQLITE_OPEN_READWRITE = 2

Opens the database for reading and writing.

SQLITE_OPEN_URI

public static final int SQLITE_OPEN_URI = 64

Interpret the filename as a URI.