i'm trying to dump a sqLite Database from memory to file (for loggin purposes) but it gives me an error.
I've tried:
conn = new SQLite3("dump.db");
$db->backup( $conn );
but it gives me an error:
Call to undefined method SQLite3::backup()
I'm using sqLite Version 3.28.0
Any idea how it would work?