Hi David, > I frequently use HSQLDB as a standalone DB in my Java Apps, ideally it > would be great to create the initial database visually using base. Base > would also be a great tool for quick front end access, making it easy > for end users to manipulate the data.
In this case, you might want to use a JDBC database-type with an JDBC URL like jdbc:hsqldb:file:<file_path>, to create/use an external (as opposed to an embedded) HSQLDB database. In this case, you still have the Base UI, but can use the database from your Java apps. (Beware, however, of concurrent access. If this is a problem, run HSQLDB in server mode.) Ciao Frank -- - Frank Schönheit, Software Engineer [EMAIL PROTECTED] - - Sun Microsystems http://www.sun.com/staroffice - - OpenOffice.org Base http://dba.openoffice.org - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
