The database connector reads its definitions from a configuration file. The configuration.xml file is automatically picked up if it is located in the:
- current directory (where the DB Connector was launched) for <db-home>\database\database-connector-2.5.2\config directory for standalone deployments.
- The location specified by the frevvo.connectors.database.configuration property in the dbconnector.properties file if you are deploying the connector in the tomcat bundle.
On this page
This is an example configuration file:
<dbconnector> <queryset name="BIRT"> <query name="allCustomers" autocreate="true"> <retrieve> <!-- maps to HTTP GET --> <statement> SELECT customerNumber,customerName from Customers order by customerName </statement> </retrieve> </query> <query name="customerByNumber" autocreate="true"> <retrieve> <!-- maps to HTTP GET --> <statement> SELECT * from Customers where customerNumber={cnum} </statement> </retrieve> </query> <query name="allProducts" autocreate="true"> <retrieve> <!--maps to HTTP GET --> <statement> SELECT productCode, productName from Products order by productName </statement> </retrieve> </query> <query name="ordersByCustomer" autocreate="true"> <retrieve> <!--maps to HTTP GET --> <statement> SELECT orderNumber, orderDate, status, customerNumber FROM Orders WHERE customerNumber={cnum} ORDER BY orderDate </statement> </retrieve> </query> <query name="orderDetailsByOrder" autocreate="true"> <retrieve> <!--maps to HTTP GET --> <statement> SELECT p.productName as product, o.quantityOrdered as quantity, o.priceEach as price, p.productDescription as description, p.MSRP FROM OrderDetails o, Products p WHERE o.productCode=p.productCode and o.orderNumber={onum} ORDER by o.orderLineNumber </statement> </retrieve> </query> <query name="productDetails" autocreate="true"> <retrieve> <!--maps to HTTP GET --> <statement> SELECT * from Products order by productName </statement> </retrieve> <create> <statement>INSERT into Products (productCode,productName,productLine,productScale,productVendor,productDescription,quantityInStock,buyPrice,MSRP) VALUES ('{productCode}','{productName}','{productLine}','{productScale}','{productVendor}','{productDescription}',{quantityInStock},{buyPrice},{MSRP})</statement> </create> </query> </dbconnector>
The xml elements in the file are as follows:
- The queryset element groups together a list of query elements. Datasource definitions are configured using property files.
- The SQL queries defined under each query element will be executed against the respective datasource.
- Each query element defines a SQL statement for each CRUD operation (create, retrieve, update, delete).
- You can define as many queryset elements as required with each pointing to a different datasource. In essence, you can have one instance of the database connector working with multiple databases.
If you update the configuration file, the database connector will pick up changes automatically.
Enable the Database Connector Cache
The Database Connector can cache result sets (read-only data) to improve performance if you want to reduce the number of times your database is being accessed. Simply add the cache element to the retrieve elements in the configuration file.
The first time the query runs the results set gets cached if it is not already cached. Data of ensuing invocations will be retrieved from cache until it has expired.
Here is an example:
<query name="getRoleInMsg" autocreate="true"> <retrieve> <statement> SELECT role FROM roles WHERE tenant="tn14" </statement> <cache> <timeToIdle>300</timeToIdle> </cache> </retrieve> </query>
The timeToIdle parameter specifies the number of seconds that must expire before a fresh object is retrieved from the database to be cached again. In the example, this is set for 300 seconds. If you set this value to 0, caching will never expire.
- Negative values for cache are not allowed.
- If you do not include the cache element, then your retrieve statements are not configured for caching. Results will be retrieved from the database every time the query runs.
SQL Statements
You define the scripts that will work with your database in the configuration file. For example, the sample configuration file defines a query called customers. That query assumes that a table such as the one below exists in your Data Source.
CREATE TABLE customers ( customerId INT, firstName VARCHAR(50), lastName VARCHAR(50) )
The SQL statements are nested inside a <query> element and one query can include up to four SQL statements. This is part of the SQL-to-Browser translation—four is the “magical” number because under the covers the connector is translating the four basic SQL functions: create, retrieve, update and delete (CRUD) to the four basic browser functions of POST, GET, PUT and DELETE. That is reflected in the children elements of the <query> element: <create>, <retrieve>, <update> and <delete>.
One query cannot have two SQL statements of the same type. If you need two different <retrieve> statements (for example, Select * from customers and Select * from Product), you’ll need two different <query> elements. A query may have fewer than four SQL statements—if users can’t delete data from your database via your forms, your query does not need a <delete> operation.
Here is the retrieve operation for query customers. The SQL statement returns all records from the customers table that match a given customer id:
<query name="customers"> <retrieve> <!-- maps to the http GET method --> <statement> SELECT * FROM customers WHERE customerId='{customerId}' </statement> </retrieve> <!-- Omitted other statements --> </query>
You can use any valid SQL statement in the configuration.
Note the string {customerId}. The database connector SQL statements are actually templates that are resolved at run time using values passed in the http request. In the example above, if there is a parameter in the http GET request that hits the connector with customerId=1234 than the statement would return the record for customer 1234.
Support for NULL or Blank Values
By default, optional/empty form fields will send a null from the form field to the Db Connector and return an xml element or json property for an optional/empty form field when the database column contains a null. This is controlled by the emit Null column feature.
if you prefer optional/empty form fields to send/return an empty string, you can disable this behavior for the whole db connector or at the queryset/query level.
There are two ways to disable the emit Null column feature:
Add the dbconnector.emitNullColumns=false property to the dbconnector properties file for your installation.
OR add the emitNullColumns="false" attribute to the respective element in the configuration.xml file for your installation:
For example:
To disable it at the instance level add the attribute at the top of configuration.xml
<dbconnector version="2.5" emitNullColumns="false">
To disable it at the queryset level, add the attribute to the queryset in configuration.xml
queryset name="BIRT" emitNullColumns="false">
To disable it at the query level, add the attribute to the query in configuration.xml
<query name="lkadgroupmembers2" emitNullColumns="false">
If you choose to turn off the emit NULL columns feature, there is a way to insert a conditional null in an insert statement if you are using a MySQL database. Refer to the Conditional NULL in MySQL Insert Statement topic for the details.
Conditional NULL in MySQL Insert Statement
If you are using the MySQL database, there is a special syntax to insert a conditional null in an insert statement. For Example, let's say your form/flow has an optional date field in a form that is designed to insert a row into the database. The insert will fail because the database connector inserts an empty string where MySQL expects NULL.
Use this Insert statement to resolve the issue:
INSERT into log (VisitorName,optional_date) VALUES ('{VisitorName}', (CASE {optional_date} WHEN '' THEN NULL ELSE {optional_date} END))
In this example, {optional_date} refers to a column of type date and is optional. When its empty in your form, NULL is inserted fulfilling the MySQL requirement otherwise the value in the field will be inserted.
Queries with dollar sign or space in a column name
Queries with a dollar sign ($) or space in a column name like the one shown below may cause an invalid xml error.
<retrieve> <statement> SELECT id, tenant, role, de$cription FROM roles; </statement> </retrieve>
This workaround is recommended - Use an 'as' clause in the query like this:
<retrieve> <statement> SELECT id, tenant, role, de$cription as description FROM roles </statement> </retrieve>
Empty resultsets
The XML Schema generated by the dbconnector requires at least 1 row (minOccurs=1). When the resultset has no rows, the connector sends an empty string, i.e. invalid XML instance. This is because the attribute emptyStringForEmptyResultSet="true" is configured by default.
logs a warning to that effect. You may notice an error message similar to the image below in the debug console when testing your forms.
This behavior can be controlled by adding the queryset attribute emptyStringForEmptyResultSet with a value of false to the queryset in the configuration.xml file or by adding the property dbconnector.queryset.emptyStringForEmptyResultSet=false to the dbconnector.properties file.
Post/Put to the Database Connector from a Business Rule
The Database Connector supports URL parameters and JSON payload in POST/PUT requests. You can use http.post() and http.put() statements in a Live Forms business rule to send data to the frevvo Database Connector to insert/update records in your external database.
Use the http.post method to INSERT records into your database and use the http.put method to update existing records.
Let’s take a look at an example to explain this.
Create a form from the Database Connector schema (productDetails) to insert a record into the products table in an external database named classicmodels. We have added a Trigger control to make testing the rules easier. The MySQL classicmodels database has a table named products. When we execute the rule in our frevvo form, we want to insert a record into this database table.
Here is an image of the form:
This query is included in the configuration.xml.
</query> <query name="productDetails" autocreate="true"> <retrieve> <!--maps to HTTP GET --> <statement> SELECT * from Products order by productName </statement> </retrieve> <create> <statement>INSERT into Products (productCode,productName,productLine,productScale,productVendor,productDescription,quantityInStock,buyPrice,MSRP) VALUES ('{productCode}','{productName}','{productLine}','{productScale}','{productVendor}','{productDescription}',{quantityInStock},{buyPrice},{MSRP})</statement> </create> </query>
There are 3 ways to insert/update a record in your external database by passing data to the Database Connector.
A Doc URI - this is the simplest way but the Doc URI is only executed when a form is submitted or a flow has completed it’s final step. When the user submits the form, the URI will be executed with the POST method selected from the dropdown. The database connector will execute the Insert operation identified by the URI.
http://localhost:8082/database/BIRT/productDetails
A business rule to pass the data to the database connector post using URL query parameters. Business rules execute in a form/flow when the specified condition is met. When the user clicks on the Trigger control, the database connector will execute the Insert operation identified by the URI in the productDetails query in the configuration.xml file..
if (trigger.clicked) { var PostURL = 'http://localhost:8082/database/BIRT/productDetails?productCode=' + productCode.value + '&productName=' + productName.value + '&productLine=' + productLine.value + '&productScale=' + productScale.value + '&productVendor=' + productVendor.value + '&productDescription=' + productDescription.value + '&quantityInStock=' + quantityInStock.value + '&buyPrice=' + buyPrice.value + '&MSRP=' + MSRP.value; http.post(PostURL); }
A business rule to create JSON to post/put in the http request. This method is preferred over method 2 because there is a limit to the length of the URL string which will limit the number of form fields you can pass to the Database Connector.
/*member MSRP, buyPrice, productCode, productDescription, productLine, productName, productScale, productVendor, quantityInStock*/ if (trigger.clicked) { var jp = { productCode: productCode.value, productName: productName.value, productLine: productLine.value, productScale: productScale.value, productVendor: productVendor.value, productDescription: productDescription.value, quantityInStock: quantityInStock.value, buyPrice: buyPrice.value, MSRP: MSRP.value, }; http.post('http://localhost:8082/database/BIRT/productDetails', jp); }
Let’s analyze this rule:
- The first line of the rule is the member directive required by the Live Forms rule validator
- Line 2 is a conditional statement to specify that the rule runs when the Trigger control is clicked
- var jp – defines the JSON payload variable
- The next 9 lines define the JSON payload – specify the form field values that will be written to the columns in the products table.
- The last line specifies the http.post operation to the database connector using the JSON payload. When the user clicks on the Trigger control, the database connector will execute the Insert operation identified by the URI in the productDetails query in the configuration.xml file..
You can also use a combination of data passed by url parameters and JSON payload. Note that if a form field is specified both via a URL parameter and in the JSON payload, the URL parameter will take precedence. For example you can write a rule like this:
/*member MSRP, buyPrice, productCode, productDescription, productLine, productName, productScale, productVendor, quantityInStock*/ if (trigger.clicked) { var jp = { productCode: productCode.value, productName: productName.value, productLine: productLine.value, productScale: productScale.value, productVendor: productVendor.value, productDescription: productDescription.value, quantityInStock: quantityInStock.value, buyPrice: buyPrice.value, MSRP: MSRP.value, }; http.post('http://localhost:8082/database/BIRT/productDetails?productCode=3', jp); }
In this rule the value of “3” specified by the ?productCode=3 URL parameter overrides the value of the JSON object.
Writing rules with http.post and http.put requests eliminates the need to use a Stored procedure to update/insert records into your database tables and then call that Stored Procedure from a business rule.
Stored Procedures
You can also execute stored procedures via the database connector. Here is an example of a mySql stored procedure.
DELIMITER // CREATE PROCEDURE GetNewOrderNum() BEGIN SELECT max(orderNumber) + 1 as onum FROM Orders; END // DELIMITER ;
To call this from the mySql command line you would use the command: call GetNewOrderNum(); To call this from the database connector you would add the following to configuration.xml:
<query name="getOrderNumber"> <retrieve> <statement> call GetNewOrderNum() </statement> </retrieve> </query>
To retrieve the next order number from your database and populate that value into a control in your form named 'onum', add the following business rule to your form:
eval ('x=' + http.get('http://localhost:8082/database/BIRT/getOrderNumber')); onum.value = x.resultSet[0].onum;
SQL Server
Here is an example with the syntax required for a SQL server stored procedure:
<query name="getOrderNumber"> <retrieve> <statement> exec GetNewOrderNum </statement> </retrieve> </query>
To pass form field values to your SQL server stored procedure, append the variables to the end of the exec line. For example if your form contains a field named customerId and department, and your sproc takes two arguments @cust and @dept:
<query name="getOrderNumber"> <retrieve> <statement> exec GetNewOrderNum @cust = {cid}, @dept = {did} </statement> </retrieve> </query>
If you need to call this stored procedure from a business rule you can pass the form data to the database connector as shown below. Note that customerId and department are the name of two controls in your form and that cid and did are the two url parameters in the http URL below.
eval ('x=' + http.get('http://localhost:8082/database/BIRT/getOrderNumber?cid=' + customerId.value + '&did=' + department.value));
Auto Create Rows
You can set the attribute autocreate in a query element.
<query name="customers" autocreate="true">
This property applies only when users submit an HTTP PUT request to the database connector. The property tells the database connector to create a new row in the database if one doesn't exist already meaning that the connector will run the create statement automatically if the update statement fails. In summary:
- If the user is updating an existing record, the Update statement will work as it normally does and the autocreate function won’t kick in.
- If the user is adding a new record, the update statement will fail (by design, because the record cannot exist if the user hasn’t added it yet) and the Connector will then run the create statement.
The autocreate feature is particularly useful when working with 's repeat control. repeat control gives you the ability to work with dynamic collections, for instance: customers, cars, addresses, dependents and others. When the user loads the form, the form may be initialized with some items (we will see how to do that with later). If the user adds new items to the collection and submits the form, those items will be automatically added to the database if autocreate=true
This behavior is actually enabled by default so if you want to turn it off you can set autocreate to false.
Auto Delete Rows
The autodelete feature is useful when working with repeat controls. Imagine you have a collection of elements in the form that were initialized from a database. If you eliminate an item in the collection and submit the form, the connector will automatically remove the item from the database. For that to happen, set the attribute autodelete to true in the query element.
<query name="customers" autocreate="true" autodelete="true" deleteKey="customerId">
Behind the scenes, the connector actually compares the items in the database with what is submitted in the form. That comparison criteria is based on a key that you define with the attribute deleteKey (required). The deleteKey value is normally the name of the primary key in the table that contains the repeat items.
Dates and Timestamps
<queryset name="myStore" timeStampFormat="yyyy-MM-dd HH:mm:ss" dateFormat="yyyy-MM-dd" xmlDateFormat="yyyy-MM-dd">
When the XML documents is created, the date format will follow the definition of the attribute xmlDateFormat.
Send User ID in "Use Mode"
If you are looking for a simple way to communicate information about the logged in user when DOC URI's are invoked, subject parameters are now included in http headers whenever is configured to make a call to the database connector on behalf of a given user. has been changed so that a request header called _frevvo.subject.id will be populated in the following cases:
- http calls from rules
- DOC URI calls
- doc/form action posts
The database connector has been enhanced to inspect http headers for resolving query parameters. Any URL parameter that begins with "_frevvo" will be ignored. Only user id is supported at this time.
If a database connector is going to be configured against a database with sensitive data, you must secure it so that the database war only accepts requests from . Enabling this type of security is is typically done by a System Administrator.
In the database connector, these parameters can be referenced in the sql configuration file just like any other parameters:
select * from users where userid = {_frevvo.subject.id}
SQL Query Examples
A solid understand of SQL syntax is helpful when creating forms that interact with your database. Below are common and useful example queries.
Like Query
Sometimes it is useful to match a row where the matching string is not exact. To do this use the SQL Like and % wild card. In this example we want to retrieve all customers that have an email address with a specific email domain 'frevvo.com'. The % wild card must be coded into the configuration.xml query. It cannot be passed down to the query as part of the URI template.
<query name="customers"> <retrieve> <statement> SELECT * FROM customers WHERE emailAddr='%{domain}%' </statement> </retrieve> </query>