String sql = "select count(*) as c from sqlite_master where type ='table' and name ='"
+ tableName.trim() + "' ";
cursor = db.rawQuery(sql, null);
查詢中,得到的cursor的初始位置是指向第一條記錄的前一個位置的
cursor.moveToFirst()指向查詢結果的第一個位置。
moveToNext也可以將cursor移動到第一條記錄上。但是它用來做循環用的比較多。
