in reply to Re: Transfer a in-memory SQLite database to disk
in thread Transfer a in-memory SQLite database to disk

thanks...that's exactly what I was looking for.

For future visitors...below is the syntax to backup a in-memory database to disk.

$dbh = DBI->connect('dbi:SQLite:dbname=:memory:'); .... .... do something .... $dbh->sqlite_backup_to_file($filename);