I make a database, create a table and insert some data.
And then delete a section of data manually using binary editor, result that I 
can?t get any of column but SQLite does not give me a error message.


console log before db file corrupted:
sqlite .open test.db
sqlite select * from testtable;
autotestmember1|1449050967|0|0|0||
newsapp|1449049422|2|0|0||
sqlite .exit;


console logafter db file corrupted:
sqlite .opentest.db
sqlite select * fromtesttable;
||||||
||||||
||||||
sqlite .exit;


or


sqlite .opentest.db
sqlite select * fromtesttable;
sqlite .exit;


Why it does not show error, some thing like?Error: database disk image is 
malformed?? Is it a bug in SQLite?

Reply via email to