Verastream Host Integrator .Net Reference

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

Performs an UPDATE procedure on a table defined in the model.

[Visual Basic]
Overloads Public Sub PerformTableProcedure( _
   ByVal tableName As String, _
   ByVal procedureName As String, _
   ByVal inputValues As IDictionary, _
   ByVal filterValues As IDictionary, _
   ByVal filterIsCaseSensitive As Boolean _
)
[C#]
public void PerformTableProcedure(
   string tableName,
   string procedureName,
   IDictionary inputValues,
   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.
inputValues
Specifies a set of column name-value pairs to input.
filterValues
Specifies a set of filter column name-value pairs to use.
filterIsCaseSensitive
Specifies whether the filter comparison should be case sensitive.

Remarks

Performs an UPDATE procedure on a table defined in the model.

Exceptions

Exception TypeCondition
HostIntegratorModelDefExceptionThrown if a reference is made to a non-existent table, procedure, or table column
HostIntegratorConnectorExceptionThrown if client is not connected
HostIntegratorExceptionThrown if the connection is for metadata only
HostIntegratorServerExceptionThrown if an error occurs while performing the procedure

See Also

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