Difference between revisions of "GVJDBCConnectionBuilder"
m (moved JDBCConnectionBuilder to GVJDBCConnectionBuilder) |
(→{{VULCON}} / {{GVCONSOLE}} Configuration) |
||
Line 18: | Line 18: | ||
Might contain the following sub-elements: | Might contain the following sub-elements: | ||
* Description | * Description | ||
− | * [[ | + | * [[GVJDBCConnectionBuilder#DriverConnectionBuilder|DriverConnectionBuilder]] |
− | * [[ | + | * [[GVJDBCConnectionBuilder#DriverPoolConnectionBuilder|DriverPoolConnectionBuilder]] |
− | * [[ | + | * [[GVJDBCConnectionBuilder#DataSourceConnectionBuilder|DataSourceConnectionBuilder]] |
===DriverConnectionBuilder=== | ===DriverConnectionBuilder=== |
Revision as of 12:29, 20 February 2012
Contents
Description
This element defines the helpers necessary to create a JDBC connection.
VulCon / GV Console Configuration
GreenVulcano® ESB uses the GVJDBCConnectionBuilder adapter for creating a JDBC connection. It is used by DataHandler, Excel Report and sql*{{...}} Metadata.
The following table shows the element's attributes GVJDBCConnectionBuilder:
Attribute | Type | Description |
---|---|---|
type | fixed | This attribute must assume the value module. |
name | fixed | This attribute must assume the value GVJDBC. |
Might contain the following sub-elements:
DriverConnectionBuilder
Creates a JDBC connection using the DriverManager.
The following table shows the element's attributes DriverConnectionBuilder:
Attribute | Type | Description |
---|---|---|
type | fixed | This attribute must assume the value jdbc-connection-builder |
class | fixed | This attribute must assume the value it.greenvulcano.gvesb.j2ee.db.connections.impl.DriverConnectionBuilder. |
name | required | Builder name. |
driver-class | required | JDBC driver class. |
url | required | JDBC connection URL. |
user | optional | JDBC connection user name. |
password | optional | JDBC connection password. |
DriverPoolConnectionBuilder
This item creates a JDBC connection (pool) using Apache DBCP.
The following table shows the element's attributes DriverPoolConnectionBuilder:
Attribute | Type | Description |
---|---|---|
type | fixed | This attribute must assume the value jdbc-connection-builder |
class | fixed | This attribute must assume the value it.greenvulcano.gvesb.j2ee.db.connections.impl.DriverPoolConnectionBuilder. |
name | required | Builder name. |
driver-class | required | JDBC driver class. |
url | required | JDBC connection URL. |
user | optional | JDBC connection user name. |
password | optional | JDBC connection password. |
Might contain the following sub-elements:
- Description
- PoolParameters
DataSourceConnectionBuilder
This elements creates a JDBC connection using a DataSource.
The following table shows the element's attributes DataSourceConnectionBuilder:
Attribute | Type | Description |
---|---|---|
type | fixed | This attribute must assume the value jdbc-connection-builder |
class | fixed | This attribute must assume the value it.greenvulcano.gvesb.j2ee.db.connections.impl.DataSourceConnectionBuilder. |
name | required | Builder name. |
data-source-jndi | required | DataSource JNDI name. |
Might contain the following sub-elements:
- Description
- JNDIHelper