2014-07-21 35 views

回答

-1

我想你只需要遍歷光標從它那裏得到想要的結果,這就像

if (cursor != null) { 
     if (cursor.moveToFirst()) 
      do { 
       String your_column = cursor.getString(cursor 
         .getColumnIndexOrThrow(COLUMN_NAME)); 

      } while (cursor.moveToNext()); 

    } 
    cursor.close(); 
+0

這retrievevs查詢結果內容。問題是「如何獲得指向光標的[sql] -query」 – k3b

+0

哦..好的。我的錯。抱歉 – jstn

0

你不得不更改Web服務來回報查詢也是如此。