Package mgui.datasources
Interface DataSet
- All Known Implementing Classes:
DataRecordSet
public interface DataSet
Interface for objects acting as a data set.
- Since:
- 1.0
- Version:
- 1.0
- Author:
- Andrew Reid
-
Method Summary
Modifier and Type Method Description DataField
getField(int f)
int
getFieldCount()
int
getRecordCount()
java.lang.Object
getValueAt(int row, int col)
boolean
setValueAt(int row, int column, java.lang.Object value)
-
Method Details
-
getFieldCount
int getFieldCount() -
getRecordCount
int getRecordCount() -
getValueAt
java.lang.Object getValueAt(int row, int col) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
setValueAt
boolean setValueAt(int row, int column, java.lang.Object value) -
getField
-