The getField method of the Recordset class retrieves the value of a field in a Recordset. getField has the following signatures:
getField(int n)
getField(String n)
Retrieves the value of a field in a Recordset.
public com.ms.wfc.data.Field getField(int n);
Returns the value of a field.
n | The index of the field. |
Retrieves the value of a field in a Recordset.
public com.ms.wfc.data.Field getField(String n);
Returns the value of a field.
n | The name of the field. |