DatabaseQuery
org.geon.DatabaseQuery

This actor performs database queries against a specific database. It accepts a string quey and a database connection reference as inputs. The actor produces the output of the query in the user's selected output format, specified by the outputType parameter, either as an XML, Record, string or a in a relational form with no metadata. The user can also specify whether to broadcast each row at a time or the whole result at once.

Author(s): Efrat Jaeger
Version:$Id: DatabaseQuery.java,v 1.26 2006/04/18 03:28:45 brooks Exp $


dbcon
A reference to the database connection.

result
The query result.



outputType
The output format: XML, Record or String or a relational string with no metadata information.

outputEachRowSeparately
Specify whether to display the complete result at once or each row separately.

query
An input query string.