Interface SqliteConnection

Interface representing a connection to an SQLite database with a method for executing queries. SqliteConnection

interface SqliteConnection {
    execute: ((statement: string, parameters: ParameterValue[]) => SqliteResult);
}

Properties

Properties

execute: ((statement: string, parameters: ParameterValue[]) => SqliteResult)

Executes an SQLite statement with given parameters and returns the result.

Type declaration