@qualithm/rqlite-client - v0.2.3
    Preparing search index...

    Type Alias QueryResult

    Result of a query (SELECT) operation.

    Contains column metadata and rows of values.

    type QueryResult = {
        columns: string[];
        time: number;
        types: string[];
        values: SqlValue[][];
    }
    Index

    Properties

    columns: string[]

    Column names in the result set.

    time: number

    Server-reported execution time in seconds.

    types: string[]

    Column types as reported by SQLite.

    values: SqlValue[][]

    Row data as arrays of values (one per row).