SPT RWT Application API

Uses of Class
com.sptci.rwt.Rows

Packages that use Rows
com.sptci.rwt A database abstraction API for analysing and interacting with relational databases using JDBC. 
com.sptci.rwt.webui The primary package for the Echo2/EPNG based web UI built around the com.sptci.rwt database abstraction API. 
 

Uses of Rows in com.sptci.rwt
 

Methods in com.sptci.rwt that return Rows
private  Rows QueryExecutorTest.delete()
          Delete the test record added to table.
 Rows QueryExecutor.execute(String sql, int... parameters)
          Execute the specified statement and return a Rows object that represent the data in the ResultSet obtained by executing the statement.
private  Rows QueryExecutorTest.insert()
          Insert the test record to table.
protected  Rows AbstractQueryExecutor.processResultSet(Statement statement, int page, int rowsPerPage, int maxColumnLength)
          Create a Rows object that represent the rows in the result set within the specified row range.
protected  Rows AbstractQueryExecutor.processUpdateCount(Statement statement)
          Return a Rows object that represents the updateCount obtained by executing a Statement.
 

Methods in com.sptci.rwt that return types with arguments of type Rows
(package private) static List<Rows> BatchQueryExecutorTest.delete()
          Delete the inserted rows from the table.
 List<Rows> BatchQueryExecutor.execute(String sql, int... parameters)
          Execute the specified statement(s) and return all the ResultSet and Statement.getUpdateCount() values that result from executing the statement(s).
(package private) static List<Rows> BatchQueryExecutorTest.insert()
          Insert test records into the table.
 

Method parameters in com.sptci.rwt with type arguments of type Rows
private  void BatchQueryExecutor.execute(String sql, List<Rows> list, Connection connection, int maxRows, int columnLength)
          Execute the specified SQL statement and fetch its associated result set or update count.
(package private)  org.apache.poi.hssf.usermodel.HSSFWorkbook ExcelGenerator.generate(String query, List<Rows> rows)
          Create a new workbook that holds the data in Rows.
 

Uses of Rows in com.sptci.rwt.webui
 

Constructors in com.sptci.rwt.webui with parameters of type Rows
RowsTableModel(Rows rows)
          Create a new instance of the table model using the specified model object.
 


SPT RWT Application API