The sqlProc
accessor executes a stored procedure on a database
using a JDBC connection. The query is provided in the operand
as a canonical <sql>
document (see example above).
Parameters should be pre-substituted into the sql document.
Several technologies such as STM and XSLT
are useful for this purpose.
The result set is returned as unparsed XML of the form:
<resultsets>
<result>
<row>
<columnName1>value</columnName1>
<columnName2>value</columnName2>
</row>
</result>
<result>
<row>
<columnName1>value</columnName1>
<columnName2>value</columnName2>
</row>
</result>
</resultsets>
Like the underlying JDBC interface, sqlQuery cannot be used to update a document, use sqlUpdate or sqlBatch.
Configuration
By default the configuration will be read from ffcpl:/etc/ConfigRDBMS.xml
.
The document provides a driver and
connection URI (see example below). Alternatively,the configuration can be provided in
an optional <configuration> argument - this
may be either a URI to a config document or a literal configuration document.
<config>
<rdbms>
<jdbcDriver>com.mysql.jdbc.Driver</jdbcDriver>
<jdbcConnection>
jdbc:mysql://localhost/mydatabase?user=myusername&password=mypassword
</jdbcConnection>
</rdbms>
</config>
For more details on the configuration see the
Mod DB Guide
.