UniScript error INSERTing rows in table with array fields
Posted: Sun 17 Aug 2014 19:28
Using: UniDAC 5.3.10 Professional (without source), Delphi XE2, Firebird 2.5.2 SuperServer
TUniScript component fails with runtime error when script tries to insert data into table with array fields:
Table structure:
SQL INSERT command in script:
TUniScript component fails with runtime error when script tries to insert data into table with array fields:
Table structure:
Code: Select all
CREATE TABLE JUMBO
(
J_ID INTEGER,
J_PROP INTEGER[4],
PRIMARY KEY (J_ID)
);
Code: Select all
INSERT INTO JUMBO (J_ID, J_PROP[1], J_PROP[2], J_PROP[3], J_PROP[4])
VALUES(1, 1, 2, 3, 4);