sqlite时间的使用方法小记

time TimeStamp NOT NULL DEFAULT (datetime('Now','localtime'));



string sql5 ="CREATE TABLE roundsdata(type INTEGER,round INTEGER,rightnum INTEGER,time not null default (datetime('Now','localtime')))";
sqliteUtil::createTable(sql5,"roundsdata");

插入北京时间的方法

string sql2 ="CREATE TABLE game_wrongs( type INTEGER,questionid INTEGER primary key,time not null default current_timestamp)";
sqliteUtil::createTable(sql2,"game_wrongs");


插入显示格林尼治时间的方法

相关文章

SQLite架构简单,又有Json计算能力,有时会承担Json文件/RES...
使用Python操作内置数据库SQLite以及MySQL数据库。
破解微信数据库密码,用python导出微信聊天记录
(Unity)SQLite 是一个软件库,实现了自给自足的、无服务器...
安卓开发,利用SQLite实现登陆注册功能