我的android程序中有以下代码:
Cursor cursor = db.rawQuery("select ID,firstname,date(birthday) from user", null);
String birthdaystr=cursor.getString(2);
但是birthdaystr 的值为空。
我将代码更改为:
Cursor cursor = db.rawQuery("select ID,firstname,birthday from user", null);
String birthdaystr=cursor.getString(2);
Birthdaystr 的值类似于“Wed Jan 10 00:00:00 +0000 1973”。
有人知道这个问题吗?(如果我使用 date() 函数,我似乎需要通过另一种方式获取值)