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) => string);
}

Hierarchy (view full)

Properties

Properties

bindParam?: ((value) => string)

Type declaration

    • (value): string
    • Parameters

      • value: unknown

      Returns string