Member Junction
    Preparing search index...

    Interface ExternalSchemaColumn

    One column/field discovered during schema introspection.

    interface ExternalSchemaColumn {
        Description?: string;
        IsPrimaryKey: boolean;
        Name: string;
        NativeType: string;
        Nullable: boolean;
    }
    Index

    Properties

    Description?: string

    Human description if the remote catalog supplies one.

    IsPrimaryKey: boolean
    Name: string
    NativeType: string

    Native remote data type, verbatim (e.g. 'VARCHAR2', 'NUMBER', 'timestamptz', 'ObjectId').

    Nullable: boolean