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
);
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.
See Also
HostIntegratorSession Class | HostIntegratorSession Members | WRQ.Verastream.HostIntegrator Namespace | HostIntegratorSession.PerformTableProcedure Overload List