database working on both the PPC and the desktop

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

I want to store my ap data in a database file.
I want to be able to work this file on both the PPC or the Desktop (there is
a desktop designer working with the data too).
I don't need any kind of synchronization, I just copy the datafile around.

do you know any database engine which would run on both the Desktop and the
PPC ?
 
Hi All !

This Codebase product looks great as one of myrequirement was not to have
the user install anything but my app to work well on both the desktop and
the PPC (basically embeding the DB engine in the app)

cheers,
Lloyd
 
Lloyd said:
I want to store my ap data in a database file.
I want to be able to work this file on both the PPC or the Desktop (there is
a desktop designer working with the data too).
I don't need any kind of synchronization, I just copy the datafile around.
do you know any database engine which would run on both the Desktop and the
PPC ?

Our object database engine does:
http://www.db4o.com

Any database engine, written in C# for the CompactFramework,
should work on the desktop also.
 
I wonder, what happened to the database if there is a sudden soft reset.
is there db coruption ?
dataloss ?
how much do I loss ?

Anyway, good idea, some feature seems interesting ....
 
Lloyd said:
I wonder, what happened to the database if there is a sudden soft reset.
is there db coruption ?
dataloss ?
how much do I loss ?

db4o supplies ACID transactions.

If you reset your device, all committed data will be available
in future sessions. All non-committed data will be lost.

If you reset your device while db4o is actually working on the
commit, the commit will resume the next time you open the database.

Anyway, good idea, some feature seems interesting ....

Thanks, please give it a try.

A lot of feedback to our product is available in our newsgroup:
news://news.db4odev.com/db4o.users
 
Back
Top