Uses of Class
uk.ac.ed.inf.utils.database.TableRow

Packages that use TableRow
test.database   
uk.ac.ed.inf.utils.database   
 

Uses of TableRow in test.database
 

Methods in test.database that return TableRow
static TableRow TableRowTest.getRowKo()
           
static TableRow TableRowTest.getRowOk()
           
 

Uses of TableRow in uk.ac.ed.inf.utils.database
 

Methods in uk.ac.ed.inf.utils.database that return TableRow
 TableRow TableReader.getRowValues(java.sql.ResultSet resultSet, int rowNumber)
          Get the nth row of a ResultSet
 TableRow TableReader.getTableRowWhereEqual(java.lang.String column, java.lang.String value)
          Gets the *first* table row where the given column has exactly the given value
 TableRow TableReader.getTableRowWhereLike(java.lang.String column, java.lang.String value)
          Gets the *first* table row where the given column has a value similar to the given value
 

Methods in uk.ac.ed.inf.utils.database with parameters of type TableRow
 java.lang.String TableWriter.getInsertSql(TableRow row)
          Returns the sql "insert into" statement for the row
 java.lang.Integer TableWriter.insertReturnsKey(TableRow row)
          Executes an sql 'insert into' operation.
 java.lang.Integer TableWriter.writeRowToTable(TableRow row)
          Insert the row values into the appropriate database table