sqlQuerysqlQuery
Make SQL Query on RDBMS and return XMLized result set.
Home > Books > NetKernel API and Services Reference > Accessor Listing > RDBMS Accessors and Utilities > sqlQuery

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:ten60:netkernel:mod:db

The sqlQuery accessor is exported by the urn:org:ten60:netkernel:mod:db module. Import this module to gain access to the accessor.

Syntax

URI
active:sqlQuery

ArgumentRulesDescription
operandMandatory the <sql> query document
configurationOptional optional configuration document

Example Usage

DPML

<instr>
  <type>sqlQuery</type>
  <operand>
    <sql>SELECT * FROM table;</sql>
  </operand>
  <configuration>/myconfiguration/configRDBMS.xml</configuration>
  <target>var:resultsetDocument</target>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:sqlQuery");
req.addArgument("operand", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

The sqlQuery accessor performs an SQL query on an RDBMS using a JDBC connection. The query is provided in the operand as a canonical <sql> document (see example above). The result set is returned as an IAspectResultSet. This can be automatically converted into an XML document with the ResultSetToXML Transreptor.

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&amp;password=mypassword </jdbcConnection>
  </rdbms>
</config>
For more details on the configuration see the Mod DB Guide.
© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.