Interface IMutableProcedureRecord
A IProcedureRecord whose contents can be modified.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface IMutableProcedureRecord : IProcedureRecord, IRecord
Methods
Set(int, string)
Sets the value of a column by index.
Declaration
void Set(int index, string columnValue)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | the column index |
| string | columnValue | the column value ApptrieveException if the column index is invalid or the value is null |
Set(string, string)
Sets the value of a column by name.
Declaration
void Set(string column, string columnValue)
Parameters
| Type | Name | Description |
|---|---|---|
| string | column | the column name |
| string | columnValue | the column value ApptrieveException if the column name is invalid or the value is null |