Method Summary |
|
abstract public int | ColDec(String column) Returns the decimal places for a column. |
abstract public int | ColSize(String column) Returns the size of a column. |
abstract public int | ColType(String column) Returns the datatype of a column. |
abstract public void | DeleteRow() Delete the current row. |
abstract public String | GetCol(String column) Retrieve a column's string value from the current row. |
abstract public int | GetRowCount() |
abstract public void | GoTop() Position the record pointer at the top of the table. |
abstract public void | InsertRow(Vector c, Vector v) Insert a row. |
abstract public boolean | NextRecord() Advance the record pointer to the next record. |
abstract public void | UpdateCol(String column, String value) Update a single column. |
abstract public void | UpdateCurrentRow(Vector c, Vector v) Updates the current row in the table. |
abstract public void | close() Closes the table. |
abstract public int | getRecordLength() |
abstract public boolean | isDeleted() |
abstract public boolean | isOpen() Checks to see if the file is Open or closed. |