简体   繁体   中英

how to get all entries of today date?

hi im fetching the all entries of today date i write the query for that but i did not get the correct entries. please solve my issue .below i write my code.thank you.

public ArrayList<groups> fetchByTodayDate(){

    String selectQuery = "SELECT * FROM " + DatabaseHelper.TABLE + " WHERE "+ DatabaseHelper.DATETIME + "<=date('now')";

    Cursor cursor = database.rawQuery(selectQuery,null);
    ArrayList<groups> all = new ArrayList<groups>();
    if (cursor != null && cursor.moveToFirst()) {
        do {
            groups data = new groups();
            smsdata.setMsgtext(cursor.getString(cursor.getColumnIndex(DatabaseHelper.TEXTMSG)));
            smsdata.setSmsId(cursor.getString(cursor.getColumnIndex(DatabaseHelper._ID)));

            all.add(data);
        } while (cursor.moveToNext());
    }
    cursor.close();
    return all;
}

(“ SELECT * FROM” + table_name +“ WHERE” + KEY_DATE +“ ='” +日期+“'”,空);

对于今天的条目,请尝试以下解决方案:-

String selectQuery = "SELECT * FROM " + DatabaseHelper.TABLE + " WHERE date(datetime("+ DatabaseHelper.DATETIME+"/1000, 'unixepoch','localtime'))=date('now')";

Try this

public ArrayList<groups> fetchByTodayDate()
{
SQLiteDatabase db = this.getReadableDatabase();
ArrayList<groups> all = new ArrayList<>();

String selectQuery = "SELECT * FROM " + DatabaseHelper.TABLE;

Cursor cursor = db.rawQuery(selectQuery,null);

cursor.moveToFirst ();

while (!cursor.isAfterLast())
{
all.add(new groups (
cursor.getString(cursor.getColumnIndex(DatabaseHelper.TEXTMSG)),
cursor.getString(cursor.getColumnIndex(DatabaseHelper._ID))
));

cursor.moveToNext ();
}

cursor.close();
db.close();

return all;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM