Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Derby databases created from Geronimo's web-based Manager Console ("DB Manager" on the left-menu item) are stored in the {geronimo install}/var/derby directory. To access a derby database instance from external applications (e.g., Derby's ij query tool), use the standard network-client URL form (replacing the server name and database path as appropriate):
No Format

(Linux) connect 'jdbc:derby://localhost:1527//usr/myapps/geronimo-1.1.1/var/derby/MyTestDB;';

...



(Windows) connect 'jdbc:derby://localhost:1527/c:\working\derbyDBs\MyTestDB;';

If your database requires a username/password, append a string similar to "'user=myuser;password=mypass';" to the above.

...