Hi there,
I run into a problem trying to insert multiple rows into a table column:
This works:
INSERT INTO “water_extract” (“ID”, “sample_id”)
VALUES (3, 1002)
This does not:
INSERT INTO “water_extract” (“ID”, “sample_id”)
VALUES (3, 1002), (4, 1003)
This is the error I get:
1: firebird_sdbc error:
*Dynamic SQL Error
*SQL error code = -104
*Token unknown - line 2, column 17
*,
caused by
‘isc_dsql_prepare’
Any help would be appreciated,
Thanks!