BundledSQLiteDriver



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

Summary

Public constructors

Cmn
android

Public functions

open SQLiteConnection
open(fileName: String)

Opens a new database connection.

android
SQLiteConnection
open(fileName: String, flags: Int)

Opens a new database connection.

Cmn
android

Inherited functions

From androidx.sqlite.SQLiteDriver
abstract SQLiteConnection
open(fileName: String)

Opens a new database connection.

Cmn

Public constructors

BundledSQLiteDriver

BundledSQLiteDriver()

BundledSQLiteDriver

BundledSQLiteDriver()

Public functions

open

open fun open(fileName: String): SQLiteConnection

Opens a new database connection.

Parameters
fileName: String

Name of the database file.

Returns
SQLiteConnection

the database connection.

open

fun open(fileName: String, flags: Int): SQLiteConnection

Opens a new database connection.

See also Opening A New Database Connection

Parameters
fileName: String

Name of the database file.

flags: Int

Connection open flags.

Returns
SQLiteConnection

the database connection.