I want to create a multi-line insert statement along these lines:
insert into foo (
value1,
value2,
value3
) values
( "1", "2", "3"),
( "4", "5", "6"),
( "7", "8", "9");
where the number of rows to be inserted is variable. Is there a way to construct this query using IDBCommand
parameterization?