how to get the database value to a String array in android(sqlite Database)

后端 未结 3 1599
梦谈多话
梦谈多话 2020-12-14 04:42

I have a database name \"CUED\" (sqlite Android)it have a table HELLO which contain a column NAME I can get the value to String from that column. L

3条回答
  •  甜味超标
    2020-12-14 05:17

           String[] str= new String[crs.getCount()];
           crs.movetoFirst();           
         for(int i=0;i

    Enjoy it

提交回复
热议问题