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;

Zend_Db_Adapter_Pdo_Sqlite はこうやってた

sqlite> PRAGMA table_info($tableName);

PK, autoincrement

int ではなく INTEGER

  id   INTEGER primary key autoincrement,

その他メモ

  • 複数行 insert はできない?


SQLite が認識できる SQL
http://net-newbie.com/sqlite/lang.html


order by upper(column_name)

http://www.mail-archive.com/sqlite-users@sqlite.org/msg14863...