Mobile Locker JavaScript SDK
    Preparing search index...

    Interface DatabaseTableDescription

    Schema description of a SQLite table, returned by mobilelocker.database.describe().

    interface DatabaseTableDescription {
        columns: DatabaseColumnInfo[];
        name: string;
        sql: string;
    }
    Index

    Properties

    Properties

    Ordered list of column descriptors.

    name: string

    Canonical table name as stored in sqlite_master.

    sql: string

    Original CREATE TABLE SQL statement.