Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Permit using the array parameter :
example
connection.query('SELECT * FROM arrayParam WHERE val IN ?', [['b', 'c', 1]]) |
resulting query send to server is then
SELECT * FROM arrayParam WHERE val IN ('b','c', 1) |
(Array value are escaped according to type)