Package version:

Interface SqlParameter

Represents a parameter in a Parameterized SQL query, specified in SqlQuerySpec

interface SqlParameter {
    name: string;
    value: JSONValue;
}

Properties

Properties

name: string

Name of the parameter. (i.e. @lastName)

value: JSONValue

Value of the parameter (this is safe to come from users, assuming they are authorized)