Uses of Interface
ir.thinkinsql.IRow

Uses of IRow in ir.thinkinsql
 

Subinterfaces of IRow in ir.thinkinsql
 interface IRecord
          Specifies the behavior of objects that represent a row of a table.
 

Classes in ir.thinkinsql that implement IRow
 class BaseRecord
          Provides an IRecord adapter, and BaseRow enhancer.
 class BaseRow
          Provides an IRow adapter.
 

Methods in ir.thinkinsql with type parameters of type IRow
<E extends IRow>
java.util.List<E>
Database.selectRows(java.lang.String sql, E returnTypeTemplate, int maxRows, java.lang.Object... parms)
          Returns a list of IRow instances for the passed statement.
 

Methods in ir.thinkinsql with parameters of type IRow
 boolean IReader.next(IRow rowToFill)
          Reads the next row of the result set, populates the passed IRow, returns whether a row was found.
 boolean Database.selectFirst(java.lang.String sql, IRow row, java.lang.Object... parms)
          Loads a row from the first row of the result.