ADBC JavaScript Driver Manager
    Preparing search index...

    Interface GetObjectsOptions

    Options for getObjects metadata call.

    interface GetObjectsOptions {
        depth?: ObjectDepth;
        catalog?: string;
        dbSchema?: string;
        tableName?: string;
        tableType?: string[];
        columnName?: string;
    }
    Index

    Properties

    depth?: ObjectDepth

    The level of depth to retrieve. Use the ObjectDepth constants. Defaults to ObjectDepth.All when omitted.

    catalog?: string

    Filter by catalog name pattern.

    dbSchema?: string

    Filter by database schema name pattern.

    tableName?: string

    Filter by table name pattern.

    tableType?: string[]

    Filter by table type (e.g., ["table", "view"]).

    columnName?: string

    Filter by column name pattern.