Add support for use of Selection Parameters in commands such as INSERT and UPDATE
For example:
INSERT INTO X (A,B,C) VALUES(?,?,?);
%a, %b, %c
instead of:
Change ' to '' where needed in input vars
INSERT INTO X (A,B,C) VALUES('%a', '%b', '%c');