• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

HSQLDB

 
Ranch Hand
Posts: 138
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

For doing O/R mapping, I'm using for creating the tables "HSQLDB".

I have started up HSQLDB GUI by typing: java -cp hsqldb.jar org.hsqldb.util.DatabaseManager

And the settings as follows:

Type: HSQL Database Engine Standalone
URL : jdbc:hsqldb:../../hsqldb/hibernateDB

And created two tables "A" and "B"

On the other hand, I started the server using the following command:

java -cp hsqldb.jar org.hsqldb.Server -database hibernateDB

So, that I run the server, and this is the message that I got at my DOS command prompt window:



And, after that I laynched the HSQLDB GUI once again, but changed the "Type" setting to the following:

HSQL Database Engine Server

And, provided that the "Server" is still running, I'm expected to view the tables that I created at the left hand side of the HSQLDB GUI window, but that did NOT happen, why is that?

Thanks.
reply
    Bookmark Topic Watch Topic
  • New Topic