in reply to Re: create SQLite database problems
in thread create SQLite database problems

Just a minor point: Autocommit should be AutoCommit

Good suggestion! Still worked in my environment (and setting AutoCommit => 0 then doing $dbh->rollback(); did indeed create an empty SQLite database).

EDIT
Also, DBI expects AutoCommit & RaiseError to be passed in a hash reference:

$dbh = DBI->connect( $dsn, $username, $password, { AutoCommit => 1, RaiseError => 1} );

Replies are listed 'Best First'.
Re^3: create SQLite database problems
by Riales (Hermit) on Mar 07, 2012 at 18:30 UTC

    Blah, that'll teach me to forgo checking documentation and rely on my memory for such things. Good catch!