in reply to create SQLite database problems
This seems to work for me as well. Kind of a shot in the dark, but have you tried explicitly turning autocommit on or just explicitly calling commit at the end of everything?
While you're at it, maybe consider setting the RaiseError flag to true as well...you never know, right? Something like:
$dbh = DBI->connect( $dsn, $username, $password, Autocommit => 1, RaiseError => 1, );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: create SQLite database problems
by chilledham (Friar) on Mar 06, 2012 at 23:40 UTC | |
by Riales (Hermit) on Mar 07, 2012 at 18:30 UTC |