Mobile Locker JavaScript SDK
    Preparing search index...

    Interface DatabaseColumnInfo

    Metadata for a single column returned by mobilelocker.database.describe().

    interface DatabaseColumnInfo {
        cid: number;
        default_value: string | null;
        name: string;
        not_null: boolean;
        primary_key: boolean;
        type: string;
    }
    Index

    Properties

    cid: number

    Column index (0-based), as reported by PRAGMA table_info.

    default_value: string | null

    Default value expression, or null if none is defined.

    name: string
    not_null: boolean

    Whether the column has a NOT NULL constraint.

    primary_key: boolean

    Whether this column is part of the primary key.

    type: string

    SQLite type affinity (e.g. 'TEXT', 'INTEGER', 'REAL', 'BLOB').