The driver supports returning parameter metadata for the following forms of Insert and Update statements:

  • INSERT INTO FOO VALUES(?, ?, ?)
  • INSERT INTO FOO (COL1, COL2, COL3) VALUES(?, ?, ?)
  • UPDATE FOO SET COL1=?, COL2=?, COL3=? WHERE COL1 operator ? [{AND | OR} COL2 operator ?]

where:

operator
is any of the following SQL operators:

=, <, >, <=, >=, and <>

.