On 17 February 2018 at 08:34, Deon Brewis <d...@mylio.com> wrote:

> Anybody have a recommendation for a tool that can read/show/interpret a
> SQLITE file at the BTREE level?
>
> Want to be able to decode the links between pages, figure out what all the
> data mean etc. And should be able to work on a corrupted file.
>

If you download the full sqlite source tree you'll find tool/showdb.c,
which can show you the btree structure (at least the intact part) and the
raw data from any DB page.

I can't remember if it can interperet index/table data off the top of my
head; you might need to refer to https://www.sqlite.org/fileformat.html to
decode the payload.

-Rowan
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to