2010-11-29から1日間の記事一覧

オブジェクト指向データベース db4Object を試す 〜その2〜

前回 blog1.mammb.comからの続きです。 ネイティブクエリ 以下のように2冊のBookが登録されていたとします。 Author author1 = new Author("Brian", "Kernighan"); Book book1 = new Book("The C Programming Language", author1, 1000); db.store(book1); A…