Punit Jain wrote:
To be short and precise..
where can i see my created databases in derby, in my system???
i have added derby to my eclipse plugins, and then i created one database, where can i see that database file??
Somewhere in the eclipse directory or - could be - in the project directory - if eclipse is using embedded driver.
Or somewhere in the database installation directory - if eclipse is using standalone installation server.
Say your data base is named "mydatabase", then fire "find / -name mydatabase -print" command if you are using linux,
or on Windwos right click on the root folder and choose "search files/folders" tool to find "mydatabase" directory .... and you will see ;)
At the beginning please read carefully documentation, especially this:
http://db.apache.org/derby/docs/10.8/devguide/cdevdeploy32171.html
then choose how do you want to deploy your application (using the embedded driver or the standalone server - embedded is a better option in my opinion),
and how do you want to create the database on the client computer.
For example, you can create an installation script that will create the database (tables, procedures etc) on the client machine.
Another option might be to include code for database creation inside your application - the application checks if the database exists,
if no - creates it.