Re: Database Alternative
From: Carl Rosenberger (carl_at_db4o.com)
Date: 03/08/04
- Next message: Elisa: "Timezone"
- Previous message: Krzysztof Kazmierczak: "RE: SDE for visual studio.net"
- In reply to: bumerang: "Database Alternative"
- Next in thread: bumerang: "Re: Database Alternative"
- Reply: bumerang: "Re: Database Alternative"
- Messages sorted by: [ date ] [ thread ]
Date: Mon, 8 Mar 2004 14:27:55 +0100
bumerang wrote:
> We are developing .NET CF & DESKTOP interface for SQLITE database
> (www.sqlite.org) Its in a beta state and I want to inform you some test
> results about it. You can use it with VB. NET or C# for CF or DESKTOP. You
> can easily transfer SQLITE database device to desktop or else, and you can
> create/fill/use your db on desktop and then just copy to device for use.
>
> Test Device : IPAQ 2210,
>
> Library returns query results as DataTable objects so, you can use it
> directly with databound objects likes dbgrid etc.
>
> Record Length (100 byte, 1 integer primary key)
>
> Insert 10,000 record takes 17 second
> Select Query for 10,000 record takes 8 second
>
> Insert 10,000 record to MMC card takes 24 second
> Select Query for 10,000 record from MMC card takes 10 second
Hi bumerang,
I take your postings as a challenge to post the results of our object
database engine for a similar task.
We store objects, so I can't provide a result for an integer on it's
own. We should run another benchmark with something more complex with
some inheritance hierarchies.
However our figures for the simplest equivalent possible...
public class SimpleInt
{
public int myInt;
}
...look pretty good to me. Our indexing system clearly beats yours:
db4o version: db4o 3.0 B71 (alpha version)
Test Device: iPAQ 5450
(1) Indexed
------------
Inserting 10,000 objects takes 171 seconds.
A query for one indexed object in 10,000 objects takes 1.1 seconds.
The indexed database file has a size of 470kB.
(2) No Index
------------
Inserting 10,000 objects takes 128 seconds.
A query (scan) for one object in 10,000 objects takes 37 seconds.
The database file has a size of 390kB.
db4o 3.0 with indexed fields will be available for public BETA testing
by the end of this month. The release is planned for the end of May.
Of course I can provide test case and engine for the above results today,
if anyone would like to check my results.
I am positive that we will provide the fastest query processor available
for the CompactFramework and I am looking forward to further races with you.
Kind regards,
Carl
-- Carl Rosenberger db4o - database for objects - http://www.db4o.com
- Next message: Elisa: "Timezone"
- Previous message: Krzysztof Kazmierczak: "RE: SDE for visual studio.net"
- In reply to: bumerang: "Database Alternative"
- Next in thread: bumerang: "Re: Database Alternative"
- Reply: bumerang: "Re: Database Alternative"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|