androidx.sqlite.driver.bundled
Classes
BundledSQLiteDriver | 
              
                 A   | 
              
                 Cmn 
                
                android 
                
                N 
                 | 
            
Type aliases
BundledSQLiteConnection | 
              
                 N 
                 | 
            |
BundledSQLiteDriver | 
              
                 A   | 
              
                 N 
                 | 
            
BundledSQLiteStatement | 
              
                 N 
                 | 
            |
OpenFlag | 
              
                 N 
                 | 
            
Constants summary
const Int | 
              
                
                 Create the database if it does not already exist.  | 
              
                 Cmn 
                 | 
            
const Int | 
              
                SQLITE_OPEN_EXRESCODE = 33554432The database connection will use extended result codes.  | 
              
                 Cmn 
                 | 
            
const Int | 
              
                SQLITE_OPEN_FULLMUTEX = 65536The database connection will use the "serialized" threading mode.  | 
              
                 Cmn 
                 | 
            
const Int | 
              
                SQLITE_OPEN_MEMORY = 128Opens the database as a in-memory database.  | 
              
                 Cmn 
                 | 
            
const Int | 
              
                SQLITE_OPEN_NOFOLLOW = 16777216The filename is not allowed to contain a symbolic link.  | 
              
                 Cmn 
                 | 
            
const Int | 
              
                SQLITE_OPEN_NOMUTEX = 32768The 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 | 
              
                SQLITE_OPEN_URI = 64Interpret 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.
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.
SQLITE_OPEN_READWRITE
const val SQLITE_OPEN_READWRITE = 2: Int
Opens the database for reading and writing.