如果用execsql方法在Select后面带上distinct,返回结果为void,得不到Cursor。
请问在sqlite中怎样才能去掉重复得到唯一数据。
方案:
sqliteDatabase类另有一个rawQuery方法,可以用自定义的sql语句进行查询,返回Cursor类型。用这个方法可以进行稍微复杂一点的查询了。
sqliteDatabase的rawQuery()用于执行select语句,使用例子如下:
<a target=_blank href="http://www.iteedu.com/handset/android/sqlitediary/sqliteDatabase.PHP" style="color: rgb(51,153); text-decoration: none;">sqliteDatabase</a>db=....; <a target=_blank href="http://www.iteedu.com/handset/android/sqlitediary/Cursor.PHP" style="color: rgb(51,153); text-decoration: none;">Cursor</a>cursor=db.rawQuery("select*fromperson",null); ... cursor.close(); db.close();rawQuery()方法的第一个参数为select语句;第二个参数为select语句中占位符参数的值,如果select语句没有使用占位符,该参数可以设置为null。带占位符参数的select语句使用例子如下:
<a target=_blank href="http://www.iteedu.com/handset/android/sqlitediary/Cursor.PHP" style="color: rgb(51,153); text-decoration: none;">Cursor</a>cursor=db.rawQuery("select*frompersonwherename like?andage=?",newString[]{"%iteedu%","4"});
对于Android平台上的数据库而言使用了嵌入式越来越流行的sqlite,为了更好的跨平台我们推荐大家使用原始sql语句直接操作,在代码和处理效率上都有不小的提高,不过要做好sql语句异常处理。
下面我们说下rawQuery的好处,可以看到查询的代码直接使用sql语句,通过性能实测效率比Android封装过的类要快不少,但不能配合一些 Adapter的使用,不过总体上在跨平台上很突出,下面为本地使用方法的伪代码,没有做任何构造和实例化,希望让项目经理知道rawsql的优势在 Android平台上的使用。
- sqliteDatabase db;
- String args[] = {id};
- ContentValues cv = new ContentValues();
-
- cv.put("android123",id);
- Cursor c = db.rawQuery("SELECT * FROM table WHERE android123=?",args); 执行本地sql语句查询
- if (c.getCount() != 0) {
- //dosomething
- db.insert("table","android123",cv); //插入数据
- ContentValues cv2= new ContentValues();
- cv2.put("android123",serif; font-size:12px"> db.delete("table","android123=?",args); //删除数据
-
- }