Contact Us 1-800-596-4880

Database Connector

The Database Connector allows you to connect with almost any Java Database Connectivity (JDBC) relational database using a single interface for every case. The Database Connector allows you to run diverse SQL operations on your database, including Select, Insert, Update, Delete, and even Stored Procedures.

Note: The Database connector replaces the JDBC connector. As of Mule 3.5.0, the JDBC Connector is deprecated.

The Database connector lets you perform predefined queries as well as queries that take the connector’s input to specify variable parameters or even to construct sections of the query dynamically. The Database connector also allows the use of template queries that are both self sufficient and customizable. You can also perform multiple SQL requests in a single bulk update. The connector also allows you to perform Data Definition Language (DDL) requests, that alter the data structure rather than the data itself. The Database connector is available with both Mule Community and Mule Enterprise runtimes.

Assumptions

This document assumes that you are familiar with databases in general and with SQL syntax. in order, to complete the examples presented here, we assume that you have access to the database that you must connect to, and that you have downloaded the proper database driver for your database.

Basic Anatomy

To use a Database Connector in your Mule application:

  1. Check that your database engine is ForDatabase Engines Supported Out of the Box; if it is not, then add the database driver for your database engine

  2. Configure a Database Global Element where you define

    1. your database’s location and connection details

    2. whether DataSense is enabled

    3. advanced connection parameters such as connection pooling

  3. Configure the Database connector element that you embed in your Mule flow, which

    1. contains the query to perform on the database

    2. references the Database Global Element

However, to really take advantage of the design-time power of the connector, consider using it in conjunction with the following Mule features:

  • DataSense: When enabled, DataSense uses information in the query statement (configured within the Database Connector) to automatically extract metadata about the message your application must deliver to, or can expect from, the database. By enabling this functionality (in the Global Database Connector element), Mule does the heavy lifting of discovering the type of data you must send to, or be prepared to receive from the database.

  • DataMapper transformer: When used in conjunction with a DataSense-enabled Database Connector, DataMapper can automatically extract message metadata that you can use to visually map and/or transform to a different data format or structure. For example, if you configure a Database Connector in your application, then drop a DataMapper after it, the DataMapper uses the information that DataSense extracted to pre-populate the input values for mapping, so that you only need to confirm (or adjust) the selections, then proceed to mapping to your desired output. In other words, DataSense makes sure that DataMapper knows the data format and structure with which it must work so you don’t have to figure it out manually.

For more information on best design-time practices with DataSense and DataMapper, consult the DataSense documentation.

Supported Operations

The database connector supports the following operations:

  • Select

  • Insert

  • Update

  • Delete

  • Stored Procedure

  • Bulk Execute

  • DDL operations such as CREATE, ALTER, etc.

Additionally, you can run a TRUNCATE query on the database by selecting Update as the operation.

Configuring a Database Connector

The example below illustrates a very simple Mule application in Studio which meets the minimum configuration requirements: configured Database Connector, configured Global Database Connector, and installed database driver. Of course, the only one of these three required parts that is visible in the graphical representation of the application is the Database Connector itself.

db example flow

To prepare an application to use a Database Connector as in the example above, you must first add the database’s driver to your Mule project, then configure, at minimum, the required parameters for the Database Connector element and a Global Database Connector element. The diagram and section below describe how to address these requirements.

modif flowchart

Database Engines Supported Out of the Box

The database connector currently includes out of the box support for three database engines:

  • Oracle

  • MySQL

  • Derby

All other database engines – including MS SQL – are supported by the Generic Database Configuration option.

Note that the steps below differ depending on if you’re trying to connect to one of the DBs supported out of the box or not, follow only those that correspond to your use case.

When using the Generic Database Configuration, you manually import the driver for your database engine and specify the driver class as one of the connection parameters. This allows you to use the database connector with any database engine for which you have a driver.

For details on configuring the database connector for any of the above scenarios, see the sections below.

Adding the Database Driver

ForDatabase Engines Supported Out of the Box

For database engines supported out of the box, the easiest way to add the database driver is to use the Add File button in the global element configuration window. The following is a brief summary of the steps required to create a global database connector and add the driver. For full configuration details including connection parameters and advanced settings, see Configuring the Database Connector for Your Application below.

To add the database driver for a database engine supported out of the box:

  1. Ensure that you have downloaded the database driver and that it is available on your machine.

  2. Drag a Database building block from the Studio palette onto the canvas.

  3. Click the Database building block to open its properties editing window.

  4. Click the plus icon to the right of Connector configuration to create a database global element for this database connector.

    choose global type
  5. Studio displays the Global Element Properties window, shown below. At the bottom of the window you find the Required dependencies section. Click Add File to add the .jar file for your database driver.

    add driver oracle
  6. Browse to and select the .jar file for your database driver. The driver is automatically added to the project.

Should you need to modify the driver after installation (for example when upgrading the driver version) you can use the same configuration window. The Add File button is replaced by a Modify button (as shown below with an installed MySQL driver). Clicking Modify allows you to edit the Java build path for the project.

installed mysql driver

For Database Engines Supported Out of the Box

To install the database driver for a generic installation, follow the steps below.

Studio Visual Editor

  1. If you haven’t already done so, download the driver for your particular database. For example, the driver for a MySQL database is available for download online.

  2. Drag and drop the driver’s jar file from your local drive to the root folder in your project.

  3. Add the .jar file to the build path of your project. Right click the project name, then select Build Path > Configure Build Path…

  4. In the wizard that appears, click the Libraries tab, then click Add Jars…

  5. Navigate to the root folder in your project, then select the .jar file for your database driver.

  6. Click OK to save, then OK to exit the wizard. Notice that your project now has a new folder named Referenced Libraries in which your database driver .jar resides.

    image::pack-explorer.png[pack_explorer]

XML Editor or Standalone

  1. If you haven’t already done so, download the driver for your particular database. For example, the driver for a MySQL database is available for download online.

  2. Add the driver’s .jar file to the root folder in your project. In Studio, you can drag and drop the file from your local drive into the project folder.

  3. Add the .jar file to the build path of your project.

After adding the database driver for a database engine not supported out of the box, you need to enter the fully qualified name of the driver class in the global element referenced by the database connector.

Configuring the Global Database Connector

Configuring for Database Engines Supported Out of the Box

Currently, the following database engines are supported out of the box:

  • Oracle

  • MySQL

  • Derby

This section explains how to configure a database connector for use with any of these databases.

Studio Visual Editor

REQUIRED: The following table describes the attributes of the Global Database connector element that you must configure to be able to connect, then submit queries to a database. For a full list of elements, attributes, and default values, consult the Database Connector Reference .

Oracle

Attribute, Required Use Properties Editor

Name

Use to define a unique identifier for the global Database connector element in your application.

oracle global elem

Database Configuration Parameters

OR

Configure via spring-bean

OR

*Database URL *

Use to define the details needed for your connector to actually connect with your database. When you have completed the configuration, click Test Connection…​ to confirm that you have established a valid, working connection to your database.

Required dependencies

Click Add File to add the database driver to your project. See Adding the Database Driver above for details.

MySQL

Attribute, Required Use Properties Editor

Name

Use to define a unique identifier for the global Database connector element in your application.

mysql global elem

Database Configuration Parameters

OR

Configure via spring-bean

OR

*Database URL *

Use to define the details needed for your connector to actually connect with your database. When you have completed the configuration, click Test Connection…​ to confirm that you have established a valid, working connection to your database.

Required dependencies

Click Add File to add the database driver to your project. See Adding the Database Driver above for details.

Derby

Attribute, Required Use Properties Editor

Name

Use to define a unique identifier for the global Database connector element in your application.

derby global elem

Database Configuration Parameters

OR

Configure via spring-bean

OR

*Database URL *

Use to define the details needed for your connector to actually connect with your database. When you have completed the configuration, click Test Connection…​ to confirm that you have established a valid, working connection to your database.

Required dependencies

Click Add File to add the database driver to your project. See Adding the Database Driver above for details.

OPTIONAL: The following table describes the attributes of the element that you can optionally configure to customize some functionality of the Global Database Connector. For a full list of elements, attributes and default values, consult the Database Connector Reference .

Attribute, Optional Use Properties Editor

General tab

Enable DataSense

Use to "turn on" DataSense, which enables Mule to make use of message metadata during design time.

config enable ds

Advanced tab

Use XA Transactions

Enable to indicate that the created datasource must support extended architecture (XA) transactions.

advanced ge

Connection Timeout

Define the amount of time a database connection remains securely active during a period of non-usage before timing-out and demanding logging in again.

Transaction isolation

Define database read issue levels.

Driver Class Name

The fully qualified name of the database driver class.

Advanced Parameters

Send parameters as key-value pairs to your DB. The parameters that can be set depend on what database software you are connecting to.

Connection Pooling

Define values for any of the connection pooling attributes to customize how your Database Connector reuses connections to the database. You can define values for:

  • Max Pool Size

  • Min Pool Size

  • Acquire Increment

  • Prepared Statement Cache Size

  • Max Wait Millis

XML Editor

Attribute Use

DB Config <db:generic-config>

name

Use to define unique identifier for the global Database Connector element in your application.

database

host

password

port

user

instance (Oracle only)

Use to define the details needed for your connector to actually connect with your database. When you have completed the configuration, click Test Connection…​ to confirm that you have established a valid, working connection to your database.

useXaTransactions

Enable to indicate that the created datasource must support extended architecture (XA) transactions.

Attribute Use

Pooling Profile `<db:pooling-profile `/>

driverClass Name

The fully qualified name of the database driver class.

maxPoolSize

minPoolSize

acquireIncrement

preparedStatementCacheSize

maxWaitMillis

Define values for any of the connection pooling attributes to customize how your Database Connector reuses connections to the database. You can define values for:

  • Max Pool Size

  • Min Pool Size

  • Acquire Increment

  • Prepared Statement Cache Size

  • Max Wait Millis

Connection Properties <db:connection-properties>

Advanced Parameters

Send parameters as key-value pairs to your database. The parameters that can be set depend on what database software you are connecting to. Each parameter must be included in a separate tag, enclosed by connection properties like so:

<db:connection-properties>
    <db:property name="myProperty" value="myValue"/>
    <db:property name="myProperty2" value="myValue2"/>
</db:connection-properties>

Configuring for Other Database Engines (Generic DB Configuration)

Studio Visual Editor

REQUIRED: The following table describes the attributes of the Global Database Connector element that you must configure in order to be able to connect, then submit queries to a database.

Attribute, required Use Properties Editor

Name

Use to define unique identifier for the global Database Connector element in your application.

Configure via spring-bean

Optional. Configure this database connection by the Spring bean referenced in DataSource Reference. Mutually exclusive with Database URL.

Database URL

Optional (can also be configured with Configure via spring-bean). The URL for the database connection. Mutually exclusive with Configure via spring-bean.

Driver Class Name

Fully-qualified driver class name of the driver for your database, which must be already imported into your project.

When browsing the available driver classes, type the beginning of the driver class name (which you can check by clicking the driver file under Referenced Libraries in the Package Explorer). Studio will display the list of classes provided by the driver.

global_elem-generic_DB-gral_tab

OPTIONAL: The following table describes the attributes of the element that you can optionally configure to customize some functionality of the Global Database Connector.

Attribute, Optional Use Properties Editor

General tab

Use XA Transactions

Enable to indicate that the created datasource must support extended architecture (XA) transactions. Default: false.

use_XA_transact

Enable DataSense

Use to "turn on" DataSense, which enables Mule to make use of message metadata during design time. Default: true.

config_enable_DS

Advanced tab

Advanced Parameters

Send parameters as key-value pairs to your DB. The parameters that can be set depend on what database software you are connecting to.

global_elem-generic_DB-adv_tab

Connection Timeout

Define the amount of time a database connection remains securely active during a period of non-usage before timing-out and demanding logging in again.

Connection Pooling

Define values for any of the connection pooling attributes to customize how your database connector reuses connections to the database. You can define values for:
* Max Pool Size
* Min Pool Size
* Acquire Increment
* Prepared Statement Cache Size
* Max Wait Millis

XML Editor

Attribute Use

DB Config <db:generic-config>

name

Use to define a unique identifier for the global Database Connector element in your application.

database

Use to define the details needed for your connector to actually connect with your database. When you have completed the configuration, click Test Connection…​ to confirm that you have established a valid, working connection to your database.

host

password

port

user

useXaTransactions

Enable to indicate that the created datasource must support XA transactions.

Attribute Use

Pooling Profile <db:pooling-profile/>

driverClassName

The fully qualified name of the database driver class.

maxPoolSize

Define values for any of the connection pooling attributes to customize how your database connector reuses connections to the database. You can define values for:
* Max Pool Size
* Min Pool Size
* Acquire Increment
* Prepared Statement Cache Size
* Max Wait Millis

minPoolSize

acquireIncrement

preparedStatementCacheSize

maxWaitMillis

Connection Properties <db:connection-properties>

Advanced Parameters

Send parameters as key-value pairs to your database. The parameters that can be set depend on what database software you are connecting to. Each parameter must be included in a separate tag, enclosed by connection properties like so:

<db:connection-properties> <db:property name="myProperty" value="myValue"/> <db:property name="myProperty2" value="myValue2"/> </db:connection-properties>

Common Driver Class Specifications

When you configure a global element for a generic database server, you need to enter the fully qualified name of the driver class as explained in the Driver Class Name cell in the table above. Below are the driver class names provided by some of the most common database drivers.

Database Driver version Driver class name

PostgreSQL

postgresql-9.3-1101.jdbc3.jar

org.postgresql.Driver

MS-SQL

sqljdbc4.jar

com.microsoft.sqlserver.jdbc.SQLServerDriver

Configuring the Database Connector for Your Application

REQUIRED: The following table describes the attributes of the Database Connector element that you must configure in order to be able to connect, then submit queries to a database. For a full list of elements, attributes, and default values, consult the Database Connector Reference.

Oracle and Derby databases are supported by Mule, but to configure them correctly you cannot do it via Studio’s Visual Interface, but rather through Studio’s XML Editor.

Attribute, Required Use Properties Editor

Display Name

Use to define a unique identifier for the Database Connector element in your flow.

config db connector

Examples:

select
insert w mel
truncate

Config Reference

Use to identify the Global Database Connector element to which the Database Connector refers for connection details, among other things.

Operation

Use to instruct the Database Connector to submit a request to perform a specific query in the database:

  • Select

  • Insert

  • Update

  • Delete

  • Stored Procedure

  • Bulk Execute

  • Execute DDL

You can also run a TRUNCATE query by selecting Update as the operation, as shown in the bottom image at right.

Type

Use to define the type of SQL statement you wish to use to submit queries to a database:

  • Parameterized

  • Dynamic

  • From Template

Refer to Query Types below for more details.

SQL Statement

OR

Template Query Reference

If you chose to use a Parameterized or Dynamic query type, use this attribute to define the SQL statement itself.

If you chose to use a From Template query type, use this attribute to reference the template (defined in a global Template Query element) in which you defined a SQL statement. Refer to Configuring a From Template Query below for more details.

OPTIONAL: The following table describes the attributes of the element that you can optionally configure to customize some functionality of the Database Connector. For a full list of elements, attributes and default values, consult the Database Connector Reference.

Take advantage of Bulk Mode

Enable this optional feature to submit collections of data with one query, as opposed to executing one query for every parameter set in a collection. Enabling bulk mode improves the performance of your applications as it reduces the number of individual query executions your application triggers. Bulk mode requires a parameterized query with at least one parameter, or a dynamic query with at least one expression.

See configuration details below.

Attribute, Optional Use with Operation Use Properties Editor

General tab

Parameter Name

Parameterized Stored Procedure

Use to identify a named parameter in your SQL statement for which you wish to use the value at runtime, when your application submits your query which calls upon stored in the database instance.

stored procedure

Parameter Type

Parameterized Stored Procedure

Use to identify the type of data the stored procedure can expect to receive from your query statement.

IN/OUT

Parameterized Stored Procedure

Defines the behavior of your stored procedure:

  • IN - stored procedure can expect only to receive data

  • OUT - stored procedure can expect only to return data

  • INOUT - stored procedure can expect to receive, then return data

Value

Parameterized Stored Procedure

Use to define the value that overrides the default value for the named parameter in your SQL statement when your application submits your query.

Query Text

Bulk Execute

Type several statements (separated by a semicolon and a new line character) to perform them in bulk.

Supports all operations except Select and Stored procedure.

bulk

From File

Bulk Execute

Reference a file with several statements (separated by a semicolon and a new line character) to perform them in bulk.

Supports all operations except Select and Stored procedure.

Dynamic query

Execute DDL

Perform an operation on the data structure, rather than the data itself through a DDL request.

dll

Advanced tab

Target

ALL

Use an enricher expression to enrich the message with the result of the SQL processing. Use this attribute to specify an alternate source for the output data, such as a variable or property.

Operation = Insert

advanced insert

Operation = Select

advanced select

Source

ALL

Use this expression to obtain the value for calculating the parameters. By default, this is #[payload]

Transactional Action

ALL

Use this attribute to change the default to one of the following values:

  • JOIN_IF_POSSIBLE - (Default) joins an in-flight transaction; if no transaction exists, Mule creates a transaction.

  • ALWAYS_JOIN - always expects a transaction to be in progress; if it cannot find a transaction to join, it throws an exception.

  • NOT_SUPPORTED - executes outside any existent transaction.

Max Rows

  • Select

  • Stored Procedure

Use to define the maximum number of rows your application accepts in a response from a database.

Fetch Size

  • Select

  • Stored Procedure

Indicates how many rows should be fetched from the resultSet. This property is required when streaming is true, the default value is 10.

Streaming

  • Select

  • Stored Procedure

Enable to facilitate streaming content through the Database Connector to the database. Mule reads data from the database in chunks of records instead of loading the full result set into memory.

Bulk Mode

  • Insert

  • Update

  • Delete

Enable to submit collections of data with one query, as opposed to executing one query for every parameter set in a collection. Enabling bulk mode improves the performance of your applications as it reduces the number of individual query executions.

Bulk mode requires a parameterized query with at least one parameter.

For example, imagine you have a query which is designed to insert employees into a database table, and for each employee, it must insert a last name and an ID. If the Database Connector submitted one query for each one of 1000 employees, the operation would be very time consuming and non-performant. If you enable bulk mode, the Database Connector executes one query to the database to insert all the employees' values as a list of parameter sets of last names and IDs.

Auto-generated Keys

Insert

Use this attribute to indicate that auto-generated keys should be made available for retrieval.

Auto-generated Keys Column Indexes

Insert

Provide a comma-separated list of column indexes that indicates which auto-generated keys should be made available for retrieval.

Auto-generated Keys Column Names

Insert

Provide a comma-separated list of column names that indicates which auto-generated keys should be made available for retrieval.

Query Types

Mule makes available three types of queries you can use to execute queries to your database from within an application. The following table describes the three types of queries, and the advantages of using each.

Query Type Description Advantages

Parameterized

(Recommended)

Mule replaces all Mule Expression Language (MEL) expressions inside a query with "?" to create a prepared statement, then evaluates the MEL expressions using the current event so as to obtain the value for each parameter.

Refer to Tips section for tips on writing parameterized query statements.

Relative to dynamic queries, parameterized queries offer the following advantages:

  • security - using parameterized query statements prevents SQL injection

  • performance - where queries are executed multiple times, using parameterized query facilitates faster repetitions of statement execution

  • type-management: using parameterized query allows the database driver to automatically manage the types of variables designated as parameters, and, for some types, provides automatic type conversion.
    For example, in the statement
    insert into employees where name = #[message.payload.name]
    Mule maps the value for #[message.payload.name] to the type of variable of the name column in the database. Furthermore, you do not need to add quotations within statements, such as ‘3’ instead of 3, or ‘string’ instead of string

Dynamic

Mule replaces all MEL expressions in the query with the result of the expression evaluation, then sends the result to the database. As such, you are responsible for making sure that any string in your query statement is interpretable by the database (i.e. quoting strings, data formatting, etc.)

The most important disadvantage of using dynamic query statements is security as it leaves the statement open for SQL injection, potentially compromising the data in your database. This risk can be mitigated by for example adding filters on your flow before the DB connector.

Relative to parameterized queries, dynamic queries offer the following advantages:

  • flexibility - you have ultimate flexibility over the SQL statement. For example, all of the following are valid dynamic query statements:

    • select * from #[tablename] where id = 1;

    • insert into #[message.payload.restOfInsertStatement];

    • #[flowVars[‘deleteStatement’]]

  • performance - if a statement is executed only once, Mule can execute a dynamic SQL slightly faster relative to a parameterized query statement

From Template

Enables you to define a query statement once, in a global element in your application (global Template Query Reference element), then reuse the query multiple times within the same application, dynamically varying specific values as needed.

Relative to parameterized and dynamic queries, from template queries offer the advantage of enabling you to reuse your query statements.

For example, you can define a parameter in your query statement within the template (within the global Template Query Reference element), then, using the query statement in a Database Connector in your flow, instruct Mule to replace the value of the parameter with a value defined within the Database Connector. Read more about how to configure this query type below.

Configuring a From-Template Query

You can use a template to pre-define an SQL query that you can use and reuse in your application’s flows. This SQL query may contain variable parameters, whose values are inherited from database connector elements that you specify. An SQL template can contain a parameterized or a dynamic SQL query.

To utilize the From Template query type, you must first define the template as a global element, then reference the template from within the database connector in your flow.

The following steps describe how to configure your database connector to use a query statement from a template.

Studio Visual Editor

  1. From within the Properties Editor of the Database Connector element in your flow, use the drop-down next to Type to select From Template.

  2. Click the plus sign next to the Template Query Reference field to create a new Global Template Query Reference element (see image, below).

    template
  3. Studio displays the Global Element Properties panel, shown below. Provide a Name for your global element, then select a query type, either Parameterized or Dynamic.

    template ge
  4. Use the radio buttons to choose the method by which you wish to define the query statement: define it inline, or define from a file.

  5. Write your SQL query, which can optionally include variables. If you include a variable, reference it by prepending its name with a colon (:) as in :myvar.

  6. Use the plus sign next to Input Parameters to create the variable, assign its default value and optionally select the data type.

  7. Click OK to save your template and return to the Properties Editor of the Database Connector in your flow. Studio auto-populates the value of the Template Query Reference field with the name of the global template element you just created.

  8. You can optionally add variables and values to the Input Parameters section of the database connector. These variables and their values are valid for all SQL templates. If a variable has been defined here and also in an individual template, then the value specified here takes precedence. In the image below, the variable value has a value of 100. This value is valid for any defined templates (which you can see in the drop-down menu) that reference the variable.

    global var
  9. Click the blank space in the Studio canvas to save your changes.

Example of Parameterized Query Using Variables

template with vars

In the image above, the parameterized query inserts the values referenced by variables :ename, :hdate and :dept. The names and values of these variables are set in the Input parameters section below the SQL query. Note that MEL expressions are allowed as values, as in the case of the :hdate field, which retrieves a date stored in a flow variable.

For each variable, the database connector automatically determines and sets the data type for inserting into the database; however, if type resolution fails, you can manually select the data type by clicking in the Type row for the variable. Studio displays a drop-down menu with data types, as shown below.

datatypes menu

If the desired data type is not listed, simply type it into the empty field.

XML Editor or Standalone

  1. At the top of your project’s XML config file, above all flows, add a ` db:template-query `element. Configure the attributes of the element according to the code sample below.

  2. To the db:template-query element, add one of the following child elements, according to the type of query you wish to write: ` db:parameterized-query` or db:dynamic-query. Configure the attribute of the child element in order to define your SQL statement. The statement may include named variables whose values can be dynamically replaced by values defined in individual Database Connector elements. To create a named variable, prepend your desired variable name with a colon (:). For example, to create a named variable for id, use :id in the query statement of your template. Use the db:in-param child element to define a default value of your named variable, if you wish.

    <db:template-query name="Template_Query" doc:name="Template Query">
       <db:parameterized-query><![CDATA[insert into simpleemp values (id)]]></db:parameterized-query>
       <db:in-param name="id" defaultValue="2"/>
    </db:template-query>
  3. In the Database connector in your Mule flow, define the values for the variables in your query statement that Mule should use at runtime when executing the query from the template. In other words, define the values you want to use to replace the default value for any variable that you defined within your template query statement.

Input Parameter Attributes

Child element: db:in-param

Attribute Description

name

Name for the input parameter

defaultValue

Input parameter default value

type

Input parameter data type

Example of Parameterized Query Using Variables

<db:template-query name="insert_values" doc:name="Template Query">
   <db:parameterized-query><![CDATA[INSERT INTO register("employer_name", "hire_date", "dept") VALUES(:ename,:hdate,:dept);]]></db:parameterized-query>
   <db:in-param name="ename" defaultValue="Genco Pura Olive Oil"/>
   <db:in-param name="hdate" defaultValue="#[flowVar['tdate']]"/>
   <db:in-param name="dept" defaultValue="PR"/>
</db:template-query>

In the code above, the parameterized query inserts the values referenced by variables for employer name :ename, hire date :hdate and :dept. The names and values of these variables are defined by in-param child elements. Note that MEL expressions are allowed as values, as in the case of the :hdate field, which retrieves a date stored in a flow variable.

For each variable, the database connector automatically determines and sets the data type for inserting into the database; however, you can also manually define the data type by using the type attribute as shown below.

...
<db:in-param name="value" defaultValue="#[flowVar['price']]" type="MONEY"/>
...

Execute DDL

Data Definition Language (DDL) is a subset of SQL that serves for manipulating the data structure rather than the data itself. This kind of request is used to create, alter, or drop tables.

When using DDL, you can only make dynamic queries (which may or may not have MEL expressions). The following are not supported:

  • parameterized-query

  • bulkMode

  • in-params

  • templates

Examples

Studio Visual Editor

Example 1

dllexample

Example 2

dllexample2

XML Editor

Example 1

<db:execute-ddl config-ref="myDb">
    <db:dynamic-query>
        truncate table #[tablename]
    </db:dynamic-query>
</db:execute-ddl>

Example 2

<db:execute-ddl config-ref="myDb">
    <db:dynamic-query>
        CREATE TABLE emp (
        empno INT PRIMARY KEY,
        ename VARCHAR(10),
        job  VARCHAR(9),
        mgr  INT NULL,
        hiredate DATETIME,
        sal  NUMERIC(7,2),
        comm  NUMERIC(7,2) NULL,
        dept  INT)
    </db:dynamic-query>
</db:execute-ddl>

Bulk Updates

The Database Connector can run multiple SQL statements in bulk mode. The return type of this kind of request is an update count, not actual data from the database.

The individual SQL statements within this MP must be separated by semicolons, and line break characters. All queries must be dynamic, they may or may not include MEL expressions.

Instead of writing a statement directly, you can reference a file that contains multiple statements that are separated by semicolons and line breaks.

You cannot perform select operations as part of a bulk operation. You can only use insert, delete, update

Examples

Studio Visual Editor

Example 1

bulkex1

Example 2

bulkex2

XML Editor

Example 1

<db:bulk-update config-ref="myDb">
    insert into employees columns (ID, name) values (abc, #[some    expression]);
    update employees set name = "Pablo" where id = 1; delete from employees where id = 2;
</db:bulk-update>

Example 2

<db:bulk-update config-ref="dbConfig" source="#[bulkQuery]">
    #[payload]
</db:bulk-update>

Tips

  • Installing the database driver: Be sure to install the .jar file for your database driver in your Mule project, then configure the build path of the project to include the .jar as a referenced library. See instructions above.

  • Inserting data drawn from a SaaS provider into a database: Within your query statement, be sure to prepend input values with a "?" to ensure that a query can return NULL values for empty fields instead of returning an error. For example, the query statement below uses information pulled from Salesforce fields BillingCity, BillingCountry, OwnerId and Phone to populate a table in a database. If the value of any of those fields is blank in Salesforce, such an insert statement would return an error.

    insert into accounts values (#[message.payload.BillingCity], #[message.payload.BillingCountry], #[message.payload.OwnerId], #[message.payload.Phone])

    However, if you manipulate the statement to include "?"s, then the insert statement succeeds, simply inserting NULL into the database table wherever the value of the Salesforce field was blank.

    insert into accounts values (#[message.payload.?BillingCity], #[message.payload.?BillingCountry], #[message.payload.?OwnerId], #[message.payload.?Phone])
  • Automatically adding a parameter for MySQL Database connections: In this release of Mule, be aware that the Global Database Connector for MySQL automatically adds a parameter to the connection details to facilitate DataSense’s ability to extract information about the data structure and format. The parameter is: generateSimpleParameterMetadata = true This driver returns “string” as the type for each input parameter (such as could not be the real parameter type).

  • Avoiding complex MEL expressions in SQL statements: Because DataSense infers data structure based upon the query statement in a Database Connector, avoid using complex MEL expressions in the query statement, such as MEL expressions that involve functions. DataSense is only able to detect data structure from simple MEL expressions such as #[payload.BillingCity], not #[payload.get(0)]. If the latter, DataSense can only indicate to DataMapper that the structure of the data it is to receive or send is "unknown".

  • Enclosing named variables in quotes. Variables in parameterized query statements should not be enclosed in quotes. For example, a user should specify:

        select * from emp where id = #[payload.id]
    not:
        select * from emp where id = '#[payload.id]'
  • Streaming with the Database connector: When you enable streaming on your Database connector, you leave the connection, statement, and resultset open after execution. Mule closes these resources when either of the following occurs:

    • The result iterator is consumed

    • There is an exception during the processing of the message (when the result iterator is in the payload of the current message)

See Also