Uses of Class
com.syncsoft.plainsql.Row

Uses of Row in com.syncsoft.plainsql
 

Methods in com.syncsoft.plainsql that return Row
 Row PlainTable.emptyrow()
          Empty row suitable for inserting.
 Row PlainSql.fetchOne()
          Return the current row from the current result set as a Row object
 Row InternalRow.getRow()
           
 Row RowSet.getRow(int rowno)
          Return the nominated row
 Row PlainSql.makeRow(java.sql.ResultSet rs)
          Return a row object for the current row in a result set
 Row RowSet.next()
          Return the next row in the arrayset.
 

Methods in com.syncsoft.plainsql that return types with arguments of type Row
 java.util.ArrayList<Row> RowSet.getRows()
          Return the rowset as an ArrayList of Row objects (rather than the more compact but less readable InternalRow)
 

Methods in com.syncsoft.plainsql with parameters of type Row
 void RowSet.addRow(Row row)
          Add an existing row to the rowset
 void RowSet.deleteRow(Row deleteRow)
          Delete the row from the database (if possible)
 void RowSet.replaceRow(int RowNo, Row row)
          Replace the rowat RowNo, with the row given
 void RowSet.updateRow(Row updateRow)
          If this is a RowSet from a PlainTable that has primary keys, then this method receives a Row and applies that row to the table via an update.
 int PlainTable.updateRow(Row updateRow)
          Apply row changes to the database.
 

Constructors in com.syncsoft.plainsql with parameters of type Row
InternalRow(RowSet rs, Row row)
           
RowSet(Row row)
          Create the rowSet, providing a row to use to create the strucutre.