インストール (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;
Zend_Db_Adapter_Pdo_Sqlite はこうやってた
sqlite> PRAGMA table_info($tableName);
PK, autoincrement
int ではなく INTEGER
id INTEGER primary key autoincrement,
その他メモ
複数行 insert はできない?
order byで大文字小文字区別しないようにしたい
order by upper(column_name)
http://www.mail-archive.com/sqlite-users@sqlite.org/msg14863.html
リンク
SQLite が認識できる SQL
http://net-newbie.com/sqlite/lang.html