Dec-22-2018, 02:35 PM
Dec-22-2018, 09:04 PM
- Check if you have sqlite3 command shell by typing (change directory to where database is located):
sqlite3 mydatabasename
- If not installed, following instructions here: https://sqlite.org/cli.html
- Once installed, start the tool from command line by typing command in step 1.
- If you want to see command list, type .help
- type
.output 'my_database_tables.sql';
- type
.dump
- type
.quit
Now the entire database will be in sql format in a file named 'my_database_tables.sql'
You can examine the data to determine where your image is located.
Once you know that, you can restart sqlite3 command line tool and use SQL to select and dump the image.