com.wrq.vhi.script.api
Interface MutableProcedureRecord

All Superinterfaces:
ProcedureRecord, Record

public interface MutableProcedureRecord
extends ProcedureRecord

A ProcedureRecord whose contents can be modified.


Method Summary
 void set(int index, java.lang.String value)
          Sets the value of a column by index.
 void set(java.lang.String column, java.lang.String value)
          Sets the value of a column by name.
 
Methods inherited from interface com.wrq.vhi.script.api.Record
get, get, getCount, getName, getNames, indexOf
 

Method Detail

set

void set(int index,
         java.lang.String value)
         throws java.lang.IllegalArgumentException
Sets the value of a column by index.

Parameters:
index - the column index
value - the column value
Throws:
java.lang.IllegalArgumentException - if the column index is invalid or the value is null

set

void set(java.lang.String column,
         java.lang.String value)
         throws java.lang.IllegalArgumentException
Sets the value of a column by name.

Parameters:
column - the column name
value - the column value
Throws:
java.lang.IllegalArgumentException - if the column name is invalid or the value is null