オブジェクト指向データベース 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); Author author2 = new Author("Bertrand", "Meyer"); Book book2 …