I have an in memory database: ``` const sqlite3 = require('sqlite3'); const db = new sqlite3.Database(':memory:'); ... // create structure and fill data ``` Is it possible to get a database dump (**without** getting all data from all tables manually)?
I have an in memory database:
Is it possible to get a database dump (without getting all data from all tables manually)?