Could someone please advise me on the best method for saving
image files to the in-built SQL database built into Android.
I am trying to build an app that wil need to access a large
amount of pictures if possible. Please Advise…
I am usio
Many Thanks.
Could someone please advise me on the best method for saving image files to
Share
The built-in Android database is called SQLite3. You can insert and retrieve arbitrary binary data in database fields, you just need to make sure your
insertstatement correctly encodes the data as string literals. According to the SQLite expression syntax, binary data can be written in a string literal asX'...'where the … is a bunch of hex digits.