Methods that support this option are functions that add values to the query. If Bindable.bindParam is specified, the value will be added to the query as a bind parameter. If it is not specified, the value will be added to the query as a literal.

interface Bindable {
    bindParam?: (value: unknown) => string;
}

Hierarchy (View Summary)

Properties

Properties

bindParam?: (value: unknown) => string