@photostructure/sqlite
    Preparing search index...

    Interface StatementColumnMetadata

    Metadata about a column in a prepared statement's result set. Matches Node.js sqlite module's StatementColumnMetadata.

    interface StatementColumnMetadata {
        column: string | null;
        database: string | null;
        name: string;
        table: string | null;
        type: string | null;
    }
    Index

    Properties

    column: string | null

    The unaliased name of the column in the origin table, or null if the column is the result of an expression or subquery. This property is the result of sqlite3_column_origin_name().

    database: string | null

    The unaliased name of the origin database, or null if the column is the result of an expression or subquery. This property is the result of sqlite3_column_database_name().

    name: string

    The name assigned to the column in the result set of a SELECT statement. This property is the result of sqlite3_column_name().

    table: string | null

    The unaliased name of the origin table, or null if the column is the result of an expression or subquery. This property is the result of sqlite3_column_table_name().

    type: string | null

    The declared data type of the column, or null if the column is the result of an expression or subquery. This property is the result of sqlite3_column_decltype().