Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
object Selekt
Link copied to clipboard
@ThreadSafe
class SQLiteDatabase : Closeable
Link copied to clipboard

The SQLiteOpenHelper class contains a useful set of APIs for managing your database. When you use this class to obtain references to your database, the system performs the potentially long-running operations of creating and updating the database lazily and only when needed, not during application startup. All you need to do is call writableDatabase().

Link copied to clipboard
data class SQLiteOpenParams(val journalMode: SQLiteJournalMode = SQLiteJournalMode.WAL, val pageSizeExponent: Int = 12, val trace: SQLiteTraceEventMode? = null)

Wrapper for configuration parameters that are used for opening a SQLiteDatabase.