I want to store images in websql(sqllite).so please provide the procedure to store images in websql.
Asked
Active
Viewed 2,181 times
0
-
5You may [check here](http://msmvps.com/blogs/jon_skeet/archive/2010/08/29/writing-the-perfect-question.aspx). – Darin Dimitrov Dec 20 '10 at 08:47
1 Answers
2
Sqlite has a data type called BLOB
which is common in many DBMSes.
You can serialize the image as byte[]
ans save it to column just like other data types.
Here is the same questoin How do i store and retrieve a blob from sqlite asked and answered.

Community
- 1
- 1

Jahan Zinedine
- 14,616
- 5
- 46
- 70