On Sat, Nov 3, 2012 at 2:32 PM, Abracadab <[email protected]> wrote:
> Hi, all. I'm building a Django app against a legacy HSQLDB database > (the existing user interface is built in OpenOffice Base). Is there a > way to use HSQLDB with Django? Alternatively, does anyone know if > there's a way to easily alter the existing database to any of the > existing Django/SQL interfaces? > > Thank you, > > Robert Orenstein > http://s7project.com/ > > I have used hsqldb in some of my projects alas not with django. It is possible that you could fire up the hsqldb in server mode with a command like this java -cp ./lib/hsqldb.jar org.hsqldb.Server -database.0 file:mydb -dbname.0 xdb and then use the tool in odred to browse the database. java -cp ./lib/hsqldb.jar org.hsqldb.util.DatabaseManagerSwing after that, you can issue any sql command you like to export the database... -- ----------------------------------------------------------------------- Nick Apostolakis email:[email protected] Web Site: http://nick.oncrete.gr ----------------------------------------------------------------------- -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

