SQLiteDriver


Known direct subclasses
AndroidSQLiteDriver

A SQLiteDriver implemented by android.database and that uses the Android's SDK SQLite APIs.

BundledSQLiteDriver

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

NativeSQLiteDriver

A SQLiteDriver that uses a version of SQLite included with the host operating system.


An interface to open database connections.

Summary

Public functions

SQLiteConnection
open(fileName: String)

Opens a new database connection.

Cmn

Public functions

open

fun open(fileName: String): SQLiteConnection

Opens a new database connection.

Parameters
fileName: String

Name of the database file.

Returns
SQLiteConnection

the database connection.