其它开源软件
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 · 823 阅读 · 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 · 438 阅读 · 0 评论
分享