saving image into SQLITE?

后端 未结 3 1884
醉酒成梦
醉酒成梦 2020-12-09 07:32

which data type should I use for storing an image in sqlLite database table??

the following is my attempt:

@Override
public void onCreate(SQLiteDatab         


        
3条回答
  •  我在风中等你
    2020-12-09 07:51

    Saving Images in to Sqlite is bad idea. You should save its path in to sqlite. Images are big in size comparing to textual information.

    It would be hard for saving and retrieving images from sqlite.

    So, I would like suggest you to store images in external folder and store its path in to sqlite database.

提交回复
热议问题