BindCollector: {
    collect(bindParameterName): string;
    getBindParameterOrder(): null | string[];
}

Type declaration

  • collect:function
  • getBindParameterOrder:function
    • Returns either an array of orders if the bind parameters are mapped to numeric parameters (e.g. '?', $1, @1), or null if no mapping was necessary because the dialect supports named parameters.

      Returns null | string[]