Defining Nested Queries
Nested queries help you to use the result of one query as an input parameter of another, and the queries executed in a nested query works in a transactional manner. Follow the steps given below to add a nested query to a data service.
Setting up a datasource
If you have already tried all the previous tutorials, you can skip this section because you have already created the Company database and added the data mentioned.
Follow the steps given below to set up a MySQL database for this tutorial.
Download the product installer from here, and run the installer.
Install the MySQL server.
Download the JDBC driver for MySQL from here and copy it to your
<EI_HOME>/libdirectory.Create the following database: Company
CREATE DATABASE Company;Create the following tables:
Offices table:
USE company; CREATE TABLE `OFFICES` (`OfficeCode` int(11) NOT NULL, `AddressLine1` varchar(255) NOT NULL, `AddressLine2` varchar(255) DEFAULT NULL, `City` varchar(255) DEFAULT NULL, `State` varchar(255) DEFAULT NULL, `Country` varchar(255) DEFAULT NULL, `Phone` varchar(255) DEFAULT NULL, PRIMARY KEY (`OfficeCode`));Employees table:
CREATE TABLE `EMPLOYEES` (`EmployeeNumber` int(11) NOT NULL, `FirstName` varchar(255) NOT NULL, `LastName` varchar(255) DEFAULT NULL, `Email` varchar(255) DEFAULT NULL, `JobTitle` varchar(255) DEFAULT NULL, `OfficeCode` int(11) NOT NULL, PRIMARY KEY (`EmployeeNumber`,`OfficeCode`), CONSTRAINT `employees_ibfk_1` FOREIGN KEY (`OfficeCode`) REFERENCES `OFFICES` (`OfficeCode`));
Insert the following data into the tables:
Add to the Offices table:
INSERT INTO OFFICES VALUES (1,"51","Glen Street","Norwich","London","United Kingdom","+441523624"); INSERT INTO OFFICES VALUES (2,"72","Rose Street","Pasadena","California","United States","+152346343");Add to the Employees table:
INSERT INTO EMPLOYEES VALUES (1,"John","Gardiner","john@office1.com","Manager",1); INSERT INTO EMPLOYEES VALUES (2,"Jane","Stewart","jane@office2.com","Head of Sales",2); INSERT INTO EMPLOYEES VALUES (3,"David","Green","david@office1.com","Manager",1);
You will now have two tables in the Company database as shown below:
Offices table:
To view the data, you can run the following command:SELECT * FROM Offices;
Employees table:
To view the data, you can run the following command:SELECT * FROM Employees;
If you tried out the previous tutorials, you will have more data than what is shown above.
Creating the data service
Let's create a data service using the Create Data Service wizard:
Start the WSO2 ESB profile.
Open the ESB profile's Management Console using https://localhost:9443/carbon, and log in using
adminas the username and the password.Click Create under Data Service.
Enter the following name for the data service
Data Service Name
EmployeesDataService
Click Next to enter the datasource connection details.
Connecting to the datasource
Follow the steps given below.
Click Add New Datasource and enter the following details:
Datasource ID
Datasource
Datasource Type
RDBMS
Datasource Type (Default/External)
Leave Default selected.
Database Engine
MySQL
Driver Class
com.mysql.jdbc.DriverURL
jdbc:mysql://localhost:3306/CompanyUser Name
Enter your MySQL server's username.
Example: RootPassword
Enter your MySQL server's password.
If you have not assigned a password, keep this field empty.Save the datasource.
Click Next to start creating queries.
Creating a query to GET employee details by the office
Let's create a query that can retrieve employee data, based on the office code. When the office code is provided as an input, the data service should get the relevant employee details and present the result.
Click Add New Query to specify the query details.
Enter the following details:
Query Name
EmployeeOfficeSQLDatasource
Datasource
SQL
select EmployeeNumber, FirstName, LastName, Email, JobTitle, OfficeCode from EMPLOYEES where OfficeCode=:OfficeCodeGenerate input and output mappings:
Click Generate Input Mapping and an input mapping will be generated automatically for the OfficeCode field:
Click Generate Response to automatically generate output mappings for the EmployeeNumber, FirstName, LastName, Email, Job Title, and Office Code fields.
Save the EmployeeOfficeSQL query.
Creating a nested query to GET office details
Let's create a query that can retrieve details of an office based on the office code. When the query is invoked, the data service should get the relevant details of the office premises. Additionally, we will nest the EmployeeOfficeSQL query that was created previously to make sure that the details of the employees attached to each office code are also included in the office details.
Click Add New Query to specify the query details.
Enter the following details:
Query Name
listOfficeSQLDatasource
Datasource
SQL
select OfficeCode, AddressLine1, AddressLine2, City, State, Country, Phone from OFFICES where OfficeCode=:OfficeCodeClick Generate Input Mappings to create the input mapping. The office code is the input as shown below.
Now, you need to create the output mapping for the query, which will determine how the output is determined.
You can use an XML format, JSON format, or RDF format for the output. Let's look at how to use an XML output or a JSON output:If you want to map the query output to an XML format:
Click Generate Response, and the required fields will be generated as shown below.
Now, let's nest the EmployeeOfficeSQL query in the listOfficeSQL query:
Click Add New Output Mapping and specify the following values.Mapping Type
querySelect Query
EmployeeOfficeSQLWhen you specify the Select Query, the query parameters of the selected query will be added by the system as shown below.
Click Save and click Main Configuration to return to the query.
If you want to map the query output to JSON:
Select JSON for the Output Type field.
Enter the following JSON script:
JSON Mapping with Nested Queries
{ "Offices":{ "Office":[ { "OfficeCode":"$OfficeCode(type:integer)", "City":"$City", "Country":"$Country", "Phone":"$Phone", "@EmployeeOfficeSQL":"$OfficeCode->OfficeCode" } ] } }Note the following:
As shown above, nested queries are mentioned in the JSON mapping by giving the query details as a JSON object attribute. That is, the name of the target query to be called and the property value (the fields in the result mapped with the target query parameters) are included in the JSON mapping as the object attribute name.
In the above example:
The target query name is mentioned by prefixing the query name with "
@". Note "@EmployeeOfficeSQL" in the example given above.The parameter mapping is added to the query by giving the following values: The field name in the result prefixed by "
$", and the name of the target query parameter.These two values in the parameter mapping are separated by "
->". See "$OfficeCode->OfficeCode" in the example given above.Note that the target query name and the parameter mapping are separated by a colon as follows:
"@EmployeeOfficeSQL": "$OfficeCode->OfficeCode"
Save the output mapping for the nested query.
Save the query.
Click Next to open the Operations screen.