HostIntegratorSession.PerformTableProcedure Method (String, String, IDictionary, Boolean)

WRQ.Verastream.HostIntegrator

WRQ Verastream Host Integrator .Net Reference

HostIntegratorSession.PerformTableProcedure Method (String, String, IDictionary, Boolean)

Performs a SELECT or a DELETE procedure on a table defined in the model.

[Visual Basic]Overloads Public Function PerformTableProcedure( _
   ByVal tableName As String, _
   ByVal procedureName As String, _
   ByVal filterValues As IDictionary, _
   ByVal filterIsCaseSensitive As Boolean _
) As DataSet
[C#]
public DataSet PerformTableProcedure(
   string tableName,
   string procedureName,
   IDictionary filterValues,
   bool filterIsCaseSensitive
);

Parameters

tableName
Specifies the name of the table on which to perform the procedure.
procedureName
Specifies the name of the table procedure to perform.
filterValues
Specifies a set of filter column name-value pairs to use.
filterIsCaseSensitive
Specifies whether the filter comparison should be case sensitive.

Return Value

This method returns the result of a SELECT procedure. (There is no return for a DELETE procedure.) If no data match the specified filter, this method returns an empty DataSet.

Remarks

Performs a DELETE or a SELECT procedure on a table defined in the model.

See Also

HostIntegratorSession Class | HostIntegratorSession Members | WRQ.Verastream.HostIntegrator Namespace | HostIntegratorSession.PerformTableProcedure Overload List