I want to insert current date in SQLite database datetime type field. How can I do this?
UPDATE : Using mDb.execSQL("INSERT INTO " + DATABASE_TABLE + " VALUES (datetime()) ");
I am able to insert like date_created=2012-10-10 13:02:08
and I want this format 10 Oct 2012 12:48
how to achive this?