in reply to DBD::SQLite will connect and CREATE, but not INSERT...sort of
That smells to me like your @row is empty, and thus, your SQL statement actually is:...my $sql = sprintf 'INSERT INTO rowdata VALUES( %s )', join(',', @row);
This gives me the following error:INSERT failed: near ")": syntax error(1) at dbdimp.c line 271
INSERT INTO rowdata VALUES()
|
|---|