Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Bind This API binds parameters to a prepared statement.

Before using this

...

API, you must

...

call pjs.prepare()

...

, so that you can pass in the handle from that call.

Parameters
  1. The handle which is created from by pjs.prepare().
  2. An array which has an arrayof arrays. Each element in the array must be another array, where the first element is the value of the parameter and the second is what the parameter type it is.
    • [[paramA, profound.SQL_PARAM_INPUT], [paramB, profound.SQL_PARAM_INPUT]]

      For each marker, there must be another element in the top array.

...