BundledSQLite
public final class BundledSQLite
Summary
Constants |
|
|---|---|
static final int |
Create the database if it does not already exist. |
static final int |
SQLITE_OPEN_EXRESCODE = 33554432The database connection will use extended result codes. |
static final int |
SQLITE_OPEN_FULLMUTEX = 65536The database connection will use the "serialized" threading mode. |
static final int |
SQLITE_OPEN_MEMORY = 128Opens the database as a in-memory database. |
static final int |
SQLITE_OPEN_NOFOLLOW = 16777216The filename is not allowed to contain a symbolic link. |
static final int |
SQLITE_OPEN_NOMUTEX = 32768The 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 |
SQLITE_OPEN_URI = 64Interpret 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.
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.
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.