SQLiteの履歴

インストール (windows)

http://www.sqlite.org/download.html からダウンロード
sqlite3.exe をパスの通ったとこに置く

コマンドライン

% sqlite hoge.db

sqlite> .q  #終了
sqlite> .help  #ヘルプ

SQL文法とか

MySQLでいうshow tables

sqlite> SELECT * FROM sqlite_master;