%# -*- coding: utf-8 -*-%> <% require 'rubygems' # rubygemsでインストールしたときに記述 %> <% require 'dbi' # dbiを使う %> <%# dbhを作成し、データベース'kginfo_sqlite.db'に接続する %> <% dbh = DBI.connect( 'DBI:SQLite3:kginfo_sqlite.db' ) %> <%# テーブルからデータを読み込んで結果のセットを得る %> <% sth = dbh.execute("select * from kginfos;") %>