1:建表的时候就设置好
CREATE TABLE testDate (
);
CREATE TABLE users(
mDb.execsql("INSERT INTO "+TABLE+" VALUES (datetime()) ");
datetime()函数要用引号包起来 当作字符串处理
3:直接把获得的date传给sqlite,格式不对,需要format下
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = new Date(); ContentValues initialValues = new ContentValues(); initialValues.put("date_created",dateFormat.format(date)); long rowId = mDb.insert(DATABASE_TABLE,null,initialValues);
原文链接:https://www.f2er.com/sqlite/202143.html