Re: Unknown SQL
Date: Sat, 21 Jul 2001 23:28:02 GMT
Message-ID: <9f6no7$a33$00$1_at_news.t-online.com>
Bob Badour wrote:
This statement obviously is wrong.
> I go further. It guarantees that OODBMS will never even begin to approach
> the quality, functionality and performance of a relational database.
- Quality is only a function of time put into development.
- Functionality is the same.
- Performance of object databases is clearly by far superior to relational
databases for certain tasks. You are invited to benchmark the insertion
performance of our database engine against any relational competitor of your
choice. How about inserting 100 Contract objects of the following class
model? Customer objects are to be inserted as well:
public class Document
{
public String title;
public Date creationDate;
}
public class Contract extends Document
{
public String contractNo;
public String subject;
public Customer customer;
}
public class Person
{
public String name;
}
public class Customer extends Person
{
public String customerNo;
}
Please do publish the results here.
Inclusions of relational vendor names would be great.
If you get anywhere near 1000%, you have found a good one.
One hint:
All necessary code is available for download with our engine.
Kind regards,
Carl
--- Carl Rosenberger db4o - database for objects - http://www.db4o.comReceived on Sun Jul 22 2001 - 01:28:02 CEST