如何将数据库值获取到android中的String数组(sqlite数据库)

前端之家收集整理的这篇文章主要介绍了如何将数据库值获取到android中的String数组(sqlite数据库)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个数据库名称“CUED”(sqlite Android)它有一个表HELLO,其中包含一个列NAME我可以从该列获取String的值.
让我告诉你我的代码部分
myDB =hello.this.openOrCreateDatabase("CUED",MODE_PRIVATE,null); 
            Cursor crs = myDB.rawQuery("SELECT * FROM HELLO",null);


            while(crs.moveToNext())
            {
                String uname = crs.getString(crs.getColumnIndex("NAME"));
                System.out.println(uname);
 }

它将逐个打印该值.现在我需要的是我想从数据库获取列值,以便我可以将它存储在字符串数组中.

解决方法

你已经做了很多困难……数组的东西非常简单:
String[] array = new String[crs.getCount()];
int i = 0;
while(crs.moveToNext()){
    String uname = crs.getString(crs.getColumnIndex("NAME"));
    array[i] = uname;
    i++;
}

无论如何,我总是建议在这种情况下使用集合:

List<String> array = new ArrayList<String>();
while(crs.moveToNext()){
    String uname = crs.getString(crs.getColumnIndex("NAME"));
    array.add(uname);
}

为了比较数组,你可以这样做:

boolean same = true;
for(int i = 0; i < array.length; i++){
    if(!array[i].equals(ha[i])){
        same = false;
        break;
    }
}
// same will be false if the arrays do not have the same elements
原文链接:https://www.f2er.com/mssql/83773.html

猜你在找的MsSQL相关文章