public interface IDataRecord
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
get(int i)
Gets the column located at the specified index.
|
int |
getFieldCount()
Gets the number of columns in the current row.
|
java.lang.Class |
getFieldType(int i)
Gets the
Class information corresponding to the type of Object that would be returned from getValue(int). |
java.lang.String |
getName(int i)
Gets the name for the field to find.
|
java.lang.Object |
getValue(int i)
Return the value of the specified field.
|
int getFieldCount()
java.lang.Object get(int i)
i - The zero-based index of the column to get.Object.java.lang.String getName(int i)
i - The index of the field to find.java.lang.Class getFieldType(int i)
Class information corresponding to the type of Object that would be returned from getValue(int).i - The index of the field to find.Class information corresponding to the type of Object that would be returned from getValue(int).java.lang.Object getValue(int i)
i - The index of the field to find.Object which will contain the field value upon return.