Is anyone using an object database?
Is anyone using an object database?
- Subject: Is anyone using an object database?
- From: Philip Riggs <email@hidden>
- Date: Fri, 25 Jun 2004 09:06:47 -0600
Is anyone using an object database? I have used several relational
databases, but for this particular problem an object database seems a
better fit. Can you recommend one for Cocoa applications? Can you
relate your experiences setting up and using them?
I want something to store and access large numbers of objects (some
datasets might be > 2,000,000) based on Guibas and Stolfi's Quad-Edge
data structure. Here are my current structures:
@interface PRPoint : NSObject {
int pointId;
double x, y, z;
}
@interface PRQuadEdge : NSObject {
int edgeId;
PRQuadEdge *oNext, *oPrevious, *dNext, *dPrevious;
PRPoint *origin, *destination;
int leftFace, rightFace;
}
Thanks for any info.
Philip
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.