hi there well i need to build an application that will with in its work
will store some user's information in a database in order to use it
later
the nature of the application implies that it should be protable, i
mean by that the user should be able to take the application in his
flash memory and use it on any other computer easily.
because of that the database should be simple and should be able to
work on any system.
so what kind of database you suggest me to use.
i am used to make java application that use Oracle or MS Access
databases but in current situation it is differnt,
cant use oracle because it cant be easily portable for the user on his
different computers,
MS Access looked good choice but the user will have to set the ODBC
settings on each and all the computers he will use, also the user will
not be able to use the application on linux OS.
so again what is the best kind of database which is sutible in this
situation
Martin Gregorie - 05 Jun 2006 13:01 GMT
> hi there well i need to build an application that will with in its work
> will store some user's information in a database in order to use it
[quoted text clipped - 3 lines]
> mean by that the user should be able to take the application in his
> flash memory and use it on any other computer easily.
Have you looked at these?
Derby - http://db.apache.org/derby/
HSQL - http://sourceforge.net/projects/hsqldb
Both are small footprint systems written in Java and both provide JDBC
interfaces.

Signature
martin@ | Martin Gregorie
gregorie. | Essex, UK
org |
David Segall - 05 Jun 2006 16:40 GMT
>hi there well i need to build an application that will with in its work
>will store some user's information in a database in order to use it
>later
>so again what is the best kind of database which is sutible in this
>situation
I have a list of databases that you can run in the same JVM as your
application here <http://database.profectus.com.au/#Java>.
If someone knows of a free (not necessarily Open Source) candidate
that I have omitted please post it.
John O'Conner - 05 Jun 2006 21:52 GMT
> the nature of the application implies that it should be protable, i
> mean by that the user should be able to take the application in his
[quoted text clipped - 4 lines]
>
> so what kind of database you suggest me to use.
Although other Java based databases exist, you might look at Apache's
Derby product...or Sun's flavor called Java DB. Whether it's Derby or
Java DB, the database is the same.
This article teaches how to create a simple desktop application using
Java DB (Derby):
Using Java DB in Desktop Applications
http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javadb/
Regards,
John O'Conner