Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/Tutorial/3.7/Database Development Perspective"

< Scout‎ | Tutorial‎ | 3.7
m (+ScoutPage)
Line 1: Line 1:
{{ScoutPage|cat=Scout}}
+
{{ScoutPage|cat=Tutorial}}
  
 
=Configure the Database Development View =
 
=Configure the Database Development View =

Revision as of 04:06, 8 July 2010

The Scout documentation has been moved to https://eclipsescout.github.io/.

Configure the Database Development View

Add new Derby Connection

Open the Database Development perspective, right click on Database Connections and call the wizard for adding a new database connection by clicking on the context menu New....
Db 1.png

From the list of available connection profiles, choose Derby.


Db 2.png

Specify Driver Details

Open the driver deteail editor by clicking on the round icon to the right of the Drivers combobox.


Db 3.png

Choose the embedded derby driver for version 10.2.


Db 4.png

Go to the tab Jar List and there specify the location of the derby.jar. If you don't have any, download it (from the official derby website: http://db.apache.org/derby/, it's inside the zip file) or download the TutorialMiniCrmWorkspaceDerbyDB and click on ok to leave this page.


Db 5.png


Db 6.png


Db 7.png

Add the path to your DerbyDb along with the login data (for the minicrm: minicrm/minicrm).


Db 8.png

When you have entered all the required data, click on Test connection in order to test the connection details you just entered. If everything is fine there will be a message box Ping succeeded.


Db 9.png

Now you can browse through the DerbyDB, modify tables, data, run statements and much more. Please be aware that you cannot have more than one connection to your DerbyDb, therefore either you browse through it in the database development view or you access it using the minicrm, therefore you need to manually disconnect from the database before you can run your application.


Db 10.png


Db 11.png

Back to the top