
其它开源软件
yell_subma
这个作者很懒,什么都没留下…
展开
-
db4o基本用法
Opening the database // accessDb4oObjectContainer db=Db4o.openFile(Util.DB4OFILENAME);try { // do something with db4o}finally { db.close();} St原创 2007-12-23 18:44:00 · 795 阅读 · 0 评论 -
db4o Storing/Retrieving/Updating/Deleting structured objects
Pilot { string name; int point; } Car { string model; Pilot pilot; }// storeFirstCarCar car1=new Car("Ferrari");Pilot pilot1=new Pilot("Michael Schumacher",100);car1.setPilot(pilot1);//保存C原创 2007-12-23 19:19:00 · 419 阅读 · 0 评论