Is there any way to convert an *.ODB file (i. e. a database file generated
by OpenOffice 2.0 working with HSQLDB) into a typical set of HSQLDB files
for embedded use in a Java standalone application, and vice versa?
Thank you.
Michele Giordano
Thomas Kellerer - 31 Oct 2005 14:07 GMT
> Is there any way to convert an *.ODB file (i. e. a database file
> generated by OpenOffice 2.0 working with HSQLDB) into a typical set of
[quoted text clipped - 4 lines]
>
> Michele Giordano
.odb is a zip file that contains all files that HSQLDB needs. AFAIK the
only way to open such a database with JDBC/Java is to unzip the .odb
file, and then point HSQLDB to the extracted files.
Thomas