Databricks SDK for JavaScript
    Preparing search index...
    interface StatementParameter {
        name?: string;
        type?: string;
        value?: string;
    }
    Index

    Properties

    Properties

    name?: string

    The name of a parameter marker to be substituted in the statement.

    type?: string

    The data type, given as a string. For example: INT, STRING, DECIMAL(10,2). If no type is given the type is assumed to be STRING. Complex types, such as ARRAY, MAP, and STRUCT are not supported. For valid types, refer to the section Data types of the SQL language reference.

    value?: string

    The value to substitute, represented as a string. If omitted, the value is interpreted as NULL.