Archive for the ‘SQLite’ Category

  1. Hello, SQLite World!

    Posted on 3月 6th, 2012 by cx20

    SQLite

    SQLite は MySQL や PostgreSQL と同様、オープンソースの DBMS である。
    アプリケーションの組み込み用途として使われることが多い。有名どころでは Firefox や Opera といったブラウザが内部ストア用として使用している。

    ソースコード

    SELECT 'Hello, SQLite World!' AS Message;

    実行方法

    $ sqlite3 -header -column < hello.sql

    実行結果

    Message             
    --------------------
    Hello, SQLite World!