How to save bitmap in database?

前端 未结 4 1375
抹茶落季
抹茶落季 2021-02-02 02:46

I want to know how to save a bitmap in database. I created table in db as:

@Override
public void onCreate(SQLiteDatabase db)
{
    db.execSQL(\"CREATE TABLE \" +         


        
4条回答
  •  灰色年华
    2021-02-02 03:30

    if you want to do that you need to use a blob. but why do you have to do this.. i wouldn't store images into a database. its better to store the image on the sdcard and then store its path into the database. often databases are installed on the phone memory and that will just fill the phone memory up...

提交回复
热议问题