码迷,mamicode.com
首页 > 移动开发 > 详细

android中cursor对象的使用

时间:2016-05-09 20:18:45      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:

cursor对象是使用行来存储数据的,你要使用它获得数据,就必须知道每一列的数据名称以及他的数据类型才能获得对象数据

常见的方法:

.close()关闭资源:记住,所有的资源对象使用完成后都要主动关闭才行

.moveToNext()移动到下一行

.moveToFirst()移动到第一行

.getColumnCount()返回列数

.getColumnIndex("")返回列名称

.getString(.getColumnIndex(""))返回获得列名称对应的数据

if(cursor!=null)
    while(cursor.moveToNext()){
        String a=cursor.getString(cursor.getColumnIndex("column1"));
        int b=cursor.getInt(cursor.getcolumnIndex("column2"));
    }
    cursor.close();
}

 

android中cursor对象的使用

标签:

原文地址:http://www.cnblogs.com/zzy-frisrtblog/p/5475073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!