On 11 Jul 2012, at 7:32am, rsharnagate <rakesh.sharnag...@gmail.com> wrote:

> Actually I want to recover deleted data from sqlitedb file. Deleted data
> means data from freelist page and unallocated space.
> That's why I want to parse it.

Sorry, but it's not possible to parse unused areas of pages because you lack 
framing information.  The data may have been written to that page when the page 
was used for something else.  Once that data was deleted, the page would have 
been reused for some other purpose, but not all the bits inside the page would 
have been overwritten, so unused area of the page might contain all sorts of 
remnants from pages of other types, written in any order, truncated strangely, 
and completely unparsable.

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

Reply via email to