As title, possible? I have by accident deleted another record due to my ugly html interface in FireFox. The bad thing is this record delete is a root folder which the progra
Sorry -- nope. Backups are the only option I know of.
In the future, consider never issuing DELETE queries, especially from user-accessible forms (let only the DB admin do it, if anyone) -- just include a field in your tables that marks a record as inactive and then factor that in to your queries in the WHERE clause.
No way. Without a working backup you won't be able to restore this.
Unfortunately I don't know of a way, either. However, until you do a VACUUM on the SQLite database file the deleted data is generally not technically removed. Perhaps you might be able to still recover some of the data using some sort of hex editor on the file.
just today I delete some data from SQLite database. Googling a lot of hours but at the end I find a good solution.
Visit: http://az4n6.blogspot.com.es/2013/11/python-parser-to-recover-deleted-sqlite.html
If you read carefully and do each step, i really promise you'll have your deleted data, ok, in a bad format but good...i have my data.
Luck!
The data isn't always removed from the file straightaway. If there's lots of it and you're desperate, you could use the UNIX command strings
on the file. This may help you to recover various bits and pieces of human-readable data, but it'll be a hard and inaccurate process.
It might be possible to go in and see the data via a hex-editor. The only info I could find said that metadata was gone so the records weren't going to come back, but the data itself might still be there. It has a lot to do with how important the data is, I suspect it's not important enough for you to dig out a hex editor.