On 5/18/19, Gravis <[email protected]> wrote: > I've been working on making a simple DB file reader and according to > the file format document (https://sqlite.org/fileformat.html), > immediately after a "B-tree Page Header" is the "cell pointer array". > Unfortunately, it never actually states how to use these 16-bit values > to compute the addresses they are supposed to point to. If someone > could clarify this for me (and preferably get the documentation > updated) that would be great.
Each entry in the cell pointer array is a 16-bit unsigned integer, which is the offset to the start of the cell from the beginning of the page. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

