QBE

Client.java: getPilotsQBE
01private static void getPilotsQBE() throws IOException { 02 System.out.println("Retrieving Pilot objects: QBE"); 03 ObjectContainer oc = Db4o.openClient("localhost", 0xdb40, "db4o","db4o"); 04 try { 05 ObjectSet result = oc.get(new Pilot(null,0)); 06 listResult(result); 07 } finally { 08 oc.close(); 09 } 10 }