SQLiteDriver


public interface 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 methods

abstract @NonNull SQLiteConnection
open(@NonNull String fileName)

Opens a new database connection.

Public methods

open

Added in 2.5.0-alpha02
abstract @NonNull SQLiteConnection open(@NonNull String fileName)

Opens a new database connection.

Parameters
@NonNull String fileName

Name of the database file.

Returns
@NonNull SQLiteConnection

the database connection.