tv=(TextView)findViewById(R.id.textView1);
SQLiteDatabase sqLiteDatabase = SQLiteDatabase.openOrCreateDatabase("/sdcard/assets.db", null);
Cursor c=sqLiteDatabase.rawQuery("select datetime('now')", null);
if(c.moveToFirst()){
tv.setText(c.getString(0));
}
tv.setText("1234");
c.close();
sqLiteDatabase.close();
I have wrote this code to operate an SQLite database to get the current date and show the date in a textView. When i run the code, it shows no error, but the final result shown that the sql state select datetime('now') didn't return a current date. The textView shown "1234" but not the date.
please tell me what's wrong with the code or if this methods is a wrong method. p.s i know how to get the date by using java calendar, this question is only asked for whether can i get the date directly by querying the SQLite database.
thanks for help.

