I write this:
$db = new PDO("sqlite:$dbname");
$db->exec("PRAGMA journal_mode = WAL;");
#.....
$wal_status = $db->exec("PRAGMA journal_mode;");
echo "WAL-status: ".$wal_status;
The www-page says: "WAL-status: 0" ---I think this means: WAL is not activated.
What must I do? Thx in advance for your hints.