Qorus Integration Engine® Enterprise Edition 6.0.25_prod
|
Selects one or more rows from a remote table in a remote Qorus instance. More...
Public Member Methods | |
constructor (string remote, string dsname, string tableName, hash< auto > sh, *hash< auto > opts) | |
Creates the object according to the arguments. More... | |
run (QorusInterfaceTest t) | |
runs the test by streaming the remote data and calling checkRowImpl() for each row More... | |
abstract | checkRowImpl (QorusInterfaceTest t, hash< auto > row) |
called for each row received from the remote end; reimplement this in a subclass and implement assertions here | |
Public Member Methods inherited from QorusInterfaceTest::AbstractRemoteDbSqlUtilAction | |
constructor (string action, string remote, string dsname, *hash< auto > opts) | |
Creates the object according to the arguments. More... | |
Public Member Methods inherited from QorusInterfaceTest::Action | |
constructor () | |
creates the object | |
abstract auto | run (QorusInterfaceTest t) |
runs the test More... | |
Private Attributes | |
string | m_tableName |
the primary table name for the select call | |
hash< auto > | m_sh |
the select hash for the remote select stream | |
int | m_rows = 0 |
row count | |
Private Attributes inherited from QorusInterfaceTest::AbstractRemoteDbSqlUtilAction | |
string | m_action |
the sqlutil method or stream name | |
string | m_remote |
the remote connection name | |
string | m_ds |
the name of the remote datasource | |
*hash< auto > | m_opts |
stream options | |
Selects one or more rows from a remote table in a remote Qorus instance.
QorusInterfaceTest::AbstractRemoteDbSelectAction::constructor | ( | string | remote, |
string | dsname, | ||
string | tableName, | ||
hash< auto > | sh, | ||
*hash< auto > | opts | ||
) |
Creates the object according to the arguments.
remote | the name of the remote connection |
dsname | the name of the remote datasource |
tableName | the primary table name for the select stream |
sh | the select hash for the select stream |
opts | select stream options; see OMQ::DbRemoteReceive::constructor() for information; note that the "select" stream option is added automaticallty using the sh argument when opening the stream |
|
virtual |
runs the test by streaming the remote data and calling checkRowImpl() for each row
t | QorusInterfaceTest test object |
Implements QorusInterfaceTest::Action.
Reimplemented in QorusInterfaceTest::RemoteDbSelectAction.