How to access the Derby console?

Hi everybody, I am new to J2EE Programming.. How do i access the Derby console?Thanks very much
[109 byte] By [arijit_datta] at [2007-11-26 8:58:44]
# 1

> Hi everybody, I am new to J2EE Programming.. How do i

> access the Derby console?

>

Do you mean you want to see the database tables, data etc. stored in derby database server?

If yes, there are two ways of doing that.

1- using embedded driver

2- using network client driver which assumes that derby is started in the so called network server mode.

Both these are easily doable using NetBeans 4.1, 5.0, 5.5 Beta.

- Runtime tab on left side.

- Databases node -> Add Driver (Right click)

- Fill the details. For derby, you can choose the derby installation and the Add the derbyclient.jar from it.

Then you can connect to a server by right-clicking on recently added driver and say connect using ...

What follows is self-explanatory.

Regards,

Kedar

> Thanks very much

kedarmhaswade at 2007-7-6 23:00:57 > top of Java-index,Application & Integration Servers,Application Servers...
# 2

i think what you want to know and what (i think) many people want to know is how to do very important administrative things such as creating users, databases, setting ownerships, granting and revoking permission, etc. as known from e.g. the comfortable pointbase-console or CLI's like psql. derby has got a CLI called ij

which has none of the features meant above, seems to be just a simple lightweightet client-CLI.

kwisatz_haderach at 2007-7-6 23:00:57 > top of Java-index,Application & Integration Servers,Application Servers...