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.9/Minicrm/Set up SQL Service"

< Scout‎ | Tutorial‎ | 3.9‎ | Minicrm
(New page: {{ScoutPage|cat=Tutorial 3.9}} {{note|Scout Tutorial|This page belongs to the [[{{BASEPAGENAME}}_Step-by-Step|Minicrm Step-by-Step Tutorial]]. Previous step: [[{{BASEPAGENAME}}/Get example...)
 
 
Line 1: Line 1:
 
{{ScoutPage|cat=Tutorial 3.9}}
 
{{ScoutPage|cat=Tutorial 3.9}}
{{note|Scout Tutorial|This page belongs to the [[{{BASEPAGENAME}}_Step-by-Step|Minicrm Step-by-Step Tutorial]]. Previous step: [[{{BASEPAGENAME}}/Get example database|Get example database]].}}  
+
{{note|Scout Tutorial|This page belongs to the [[{{BASEPAGENAME}}/Minicrm Step-by-Step|Minicrm Step-by-Step Tutorial]]. Previous step: [[{{BASEPAGENAME}}/Get example database|Get example database]].}}  
  
 
We want to connect to a database. In Scout terms, the client might want to fill a table with data from the database. It calls a service on the server which provides the desired data. That service in turn has to get the data from somewhere. In this case, it sends a SQL statement to yet another service, the '''SQL service'''. This service will handle connecting to the database and the rest.
 
We want to connect to a database. In Scout terms, the client might want to fill a table with data from the database. It calls a service on the server which provides the desired data. That service in turn has to get the data from somewhere. In this case, it sends a SQL statement to yet another service, the '''SQL service'''. This service will handle connecting to the database and the rest.
Line 6: Line 6:
 
Eclipse Scout comes with support for [http://db.apache.org/derby/ Apache Derby] out of the box.  
 
Eclipse Scout comes with support for [http://db.apache.org/derby/ Apache Derby] out of the box.  
 
Support for [http://www.postgresql.org/ PostgreSQL] and [http://www.oracle.com/de/products/database/index.html Oracle] is trivial to add  
 
Support for [http://www.postgresql.org/ PostgreSQL] and [http://www.oracle.com/de/products/database/index.html Oracle] is trivial to add  
(''For more information, see: {{ScoutLink|HowTo/3.8|Write_a_jdbc_connection_bundle|How To write a JDBC connection bundle}}'').
+
(''For more information, see: {{ScoutLink|HowTo/3.9|Write_a_jdbc_connection_bundle|How To write a JDBC connection bundle}}'').
 
Switching to other solutions like [http://www.hibernate.org/ Hibernate] is possible, but beyond the scope of the tutorial.
 
Switching to other solutions like [http://www.hibernate.org/ Hibernate] is possible, but beyond the scope of the tutorial.
  
Line 15: Line 15:
 
Go to the server node and open the tree, drill down to ''Sql Services'' below ''Common Services'' and right-click on it in order to open the wizard to create a new SQL service.
 
Go to the server node and open the tree, drill down to ''Sql Services'' below ''Common Services'' and right-click on it in order to open the wizard to create a new SQL service.
  
[[Image:Scout-NewSQLService.PNG]]
+
[[Image:Scout.3.9.minicrm.new_sql_service.explorer.png]]
  
 
Name your new service ''DerbySqlService'' and choose ''AbstractDerbySqlService'' from the combobox ''Super Type'' then click ''Finish''.
 
Name your new service ''DerbySqlService'' and choose ''AbstractDerbySqlService'' from the combobox ''Super Type'' then click ''Finish''.
  
[[Image:Newsqlservice.png|Newsqlservice.png]]
+
[[Image:Scout.3.9.minicrm.new_sql_service.wizard.png]]
<!--{{warning|Missing Derby Support|If the Super Type ''AbstractDerbySqlService'' doesn't appear within the combobox, you need to organize your server project's ''plugin.xml''. Switch to the Java Perspective, double-click on the server project, open the plugin.xml file, go to the ''Dependencies'' tab and add the plug-in ''org.eclipse.scout.rt.jdbc.derby'' to the ''Required Plug-Ins''. If the Super Type still does not appear, make sure that the ''derby.jar'' is in the lib folder of the Java installation. You can get this library directly from [http://db.apache.org/derby/ Apache Derby].}}
+
 
[[Image:Serverplugin.jpg|Serverplugin.jpg]]-->
+
  
 
== Change default configuration settings ==
 
== Change default configuration settings ==
  
Adjust the '''settings''' in your ''DerbySqlService'' by editing the '''Jdbc Mapping Name'''. It should point to the folder where you unzipped the DerbyDb to. That's the example database you downloaded {{ScoutLink|Tutorial|3.7/Minicrm/Get example database|at the beginning of this tutorial}}.
+
Adjust the '''settings''' in your ''DerbySqlService'' by editing the '''Jdbc Mapping Name'''. It should point to the folder where you unzipped the DerbyDb to. That's the example database you downloaded [[{{BASEPAGENAME}}/Get example database|at the beginning of this tutorial]].
  
 
Also make sure you have the right '''Jdbc Driver Name''' set by '''org.apache.derby.jdbc.EmbeddedDriver'''.
 
Also make sure you have the right '''Jdbc Driver Name''' set by '''org.apache.derby.jdbc.EmbeddedDriver'''.
Line 31: Line 30:
 
Use '''minicrm''' for both '''username''' and '''password'''.
 
Use '''minicrm''' for both '''username''' and '''password'''.
  
[[Image:Scout-DerbySQLService.PNG]]
+
[[Image:Scout.3.9.minicrm.new_sql_service.properties.png]]
  
 
{{note|Escape Backslashes|Make sure you escape backslashes if you're working on Windows.}}
 
{{note|Escape Backslashes|Make sure you escape backslashes if you're working on Windows.}}

Latest revision as of 05:19, 26 May 2013

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

Note.png
Scout Tutorial
This page belongs to the Minicrm Step-by-Step Tutorial. Previous step: Get example database.


We want to connect to a database. In Scout terms, the client might want to fill a table with data from the database. It calls a service on the server which provides the desired data. That service in turn has to get the data from somewhere. In this case, it sends a SQL statement to yet another service, the SQL service. This service will handle connecting to the database and the rest.

Eclipse Scout comes with support for Apache Derby out of the box. Support for PostgreSQL and Oracle is trivial to add (For more information, see: The Scout documentation has been moved to https://eclipsescout.github.io/.). Switching to other solutions like Hibernate is possible, but beyond the scope of the tutorial.

We will use Apache Derby in this tutorial. Derby is an open source relational database implemented entirely in Java and available under the Apache License.

Create a new AbstractDerbySqlService

Go to the server node and open the tree, drill down to Sql Services below Common Services and right-click on it in order to open the wizard to create a new SQL service.

Scout.3.9.minicrm.new sql service.explorer.png

Name your new service DerbySqlService and choose AbstractDerbySqlService from the combobox Super Type then click Finish.

Scout.3.9.minicrm.new sql service.wizard.png


Change default configuration settings

Adjust the settings in your DerbySqlService by editing the Jdbc Mapping Name. It should point to the folder where you unzipped the DerbyDb to. That's the example database you downloaded at the beginning of this tutorial.

Also make sure you have the right Jdbc Driver Name set by org.apache.derby.jdbc.EmbeddedDriver.

Use minicrm for both username and password.

Scout.3.9.minicrm.new sql service.properties.png

Note.png
Escape Backslashes
Make sure you escape backslashes if you're working on Windows.

Back to the top