kysely
    Preparing search index...

    Interface DatabaseConnection

    A single connection to the database engine.

    These are created by an instance of Driver.

    interface DatabaseConnection {
        executeQuery<R>(compiledQuery: CompiledQuery): Promise<QueryResult<R>>;
        streamQuery<R>(
            compiledQuery: CompiledQuery,
            chunkSize?: number,
        ): AsyncIterableIterator<QueryResult<R>>;
    }
    Index

    Methods