"Steven S" <> wrote in message
news:dq3i0o$u95$...
> Actually, could someone tell any embedded open source database
> products names?
>
> Cheers!
>
By "Java embedded DB", I assume you mean a DB which can be run from
within your java program, as opposed to a seperate process. I'm assuming you
DON'T mean a DB for embedded devices (e.g. cellphones).
I've used HSQL and am generally satisfied with it. The DB can be
entirely in memory (and thus non-persisted), or persisted to disk in various
formats.
http://hsqldb.org/
- Oliver