SQLite3コマンドライン・メモ
●データベーススキーマ
> .schema
●テーブルを作成
CREATE TABLE tableName (pk integer primary key autoincrement, flag integer, created double);
●テーブルにインサート
insert into tableName values (null, 0, 0.0);
●データベーススキーマ
> .schema
CREATE TABLE tableName (pk integer primary key autoincrement, flag integer, created double);
insert into tableName values (null, 0, 0.0);