The class HSRecordSet contains methods to read and manipulate tables.
The method
void delete()
deletes the data record, that is at the cursor of HSRecordSet.
The methods
Object getObject(int columnIndex)
and
Object getObject(String columnName)
can get values of columns from the data record, that is at the cursor of HSRecordSet. The argument columnIndex corresponds to the column index, the argument columnName corresponds to the column name.
The method
void updateObject(String columnName, Object x)
updates the data record, that is at the cursor of HSRecordSet. The argument columnName corresponds to the column name, the argument x corresponds to the value, that will bw written to the data record.