[sqlite] Database layout in memory

2016-03-27 Thread René Czerny
Sorry for the late reply? So from the connection object you can find the PCache? Do you have any hints as to how I could find the db connection object in memory? Is there some typical pattern that I could find? Best, Ren? > On 28 Feb 2016, at 17:09, Keith Medcalf wrote: > > You would have to

[sqlite] Database layout in memory

2016-02-28 Thread René Czerny
Thank you for the quick response, Keith! As I understand it, the SQLite Backup API?s only work with an SQLite object. E.g.: sqlite3_backup_init() needs a pointer to the database to copy from. However, I do not have access to such a pointer, as the only thing I get is a raw binary dump of the

[sqlite] Database layout in memory

2016-02-28 Thread René Czerny
Dear SQLite mailing list, after not finding anything on Google, I want to ask my question here: I am currently doing research on how to extract an SQLite inmemory-database from the image of a computer?s main memory and store it as a database file on disc. My previous attempts however failed,