IMPORT CSV
UPDATE ATABLE
SET ACOL = :2
WHERE ID = :1;
1,2
3,4
Maybe we should discard the old INSERT syntax completely and make it:
IMPORT CSV
INSERT INTO TEMP3 ( TEMP1, TEMP2, TEMP3, TEMP4 )
VALUES ( :2, CONVERT( :1, INTEGER ) + :2, 'Y', '-)-", TEST ''X' );
1,2
3,4
and for an external file:
IMPORT CSV
FILE "file" ENCODING "UTF-8"
INSERT INTO TEMP3 ( TEMP1, TEMP2, TEMP3, TEMP4 )
VALUES ( :2, CONVERT( :1, INTEGER ) + :2, 'Y', '-)-", TEST ''X' );
I think it is possible to detect the old syntax by detecting the INTO.
Critical because breaking changes must be implemented before 2.0.0 is released.
Original issue reported on code.google.com by rene.de....@gmail.com on 5 Apr 2012 at 6:23
Original issue reported on code.google.com by
rene.de....@gmail.com
on 5 Apr 2012 at 6:23