Details
-
Type:
Task
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 2.1.0
-
Component/s: compatibility
-
Labels: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)