androidx.sqlite.driver.bundled


Classes

BundledSQLiteDriver

A SQLiteDriver that uses a bundled version of SQLite included as a native component of this library.

Cmn
android
N

Type aliases

BundledSQLiteConnection
N
BundledSQLiteDriver

A SQLiteDriver that uses a bundled version of SQLite included as a native component of this library.

N
BundledSQLiteStatement
N
OpenFlag
N

Constants summary

const Int

Create the database if it does not already exist.

Cmn
const Int

The database connection will use extended result codes.

Cmn
const Int

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

Cmn
const Int

Opens the database as a in-memory database.

Cmn
const Int

The filename is not allowed to contain a symbolic link.

Cmn
const Int

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

Cmn
const Int

Opens the database in read-only mode.

Cmn
const Int

Opens the database for reading and writing.

Cmn
const Int

Interpret the filename as a URI.

Cmn

Constants

SQLITE_OPEN_CREATE

const val SQLITE_OPEN_CREATE = 4: Int

Create the database if it does not already exist.

SQLITE_OPEN_EXRESCODE

const val SQLITE_OPEN_EXRESCODE = 33554432: Int

The database connection will use extended result codes.

SQLITE_OPEN_FULLMUTEX

const val SQLITE_OPEN_FULLMUTEX = 65536: Int

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

See also SQLite In Multi-Threaded Applications

SQLITE_OPEN_MEMORY

const val SQLITE_OPEN_MEMORY = 128: Int

Opens the database as a in-memory database.

SQLITE_OPEN_NOFOLLOW

const val SQLITE_OPEN_NOFOLLOW = 16777216: Int

The filename is not allowed to contain a symbolic link.

SQLITE_OPEN_NOMUTEX

const val SQLITE_OPEN_NOMUTEX = 32768: Int

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

See also SQLite In Multi-Threaded Applications

SQLITE_OPEN_READONLY

const val SQLITE_OPEN_READONLY = 1: Int

Opens the database in read-only mode.

SQLITE_OPEN_READWRITE

const val SQLITE_OPEN_READWRITE = 2: Int

Opens the database for reading and writing.

SQLITE_OPEN_URI

const val SQLITE_OPEN_URI = 64: Int

Interpret the filename as a URI.