0

I want to store images in websql(sqllite).so please provide the procedure to store images in websql.

demongolem
  • 9,148
  • 36
  • 86
  • 104
venu
  • 19
  • 4

1 Answers1

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,357
  • 5
  • 42
  • 70