/*データベースを開く*/
var db = new LocalDB(new FileSystem(), "testdb.sqlite");
/*テーブル作成*/
db.Exec("create table list (id integer, value text, value2 text)");
/*データ挿入*/
db.Exec("insert into list values (0, '果物', 'リンゴ')");
/*データ検索*/
var st = db.CreateStatement("select * from list where value = '魚'");