http://www.perlmonks.org?node_id=1088040


in reply to Perl or DBI error?

AutoCommit => 0, so if DDL [1] is transactional in SQLite (of which I'm not sure) then the CREATE TABLEs would need a COMMIT ($dbh->commit). (If not COMMITted the CREATEs would be ROLLBACKed. at disconnect())

[1]http://en.wikipedia.org/wiki/Data_Definition_Language

Replies are listed 'Best First'.
Re^2: Perl or DBI error?
by RedElk (Hermit) on May 30, 2014 at 18:23 UTC

    D'oh!

    Thanks erix, that did the trick.