| java.lang.Object org.dbbrowser.db.engine.model.DBTable
DBTable | public class DBTable (Code) | | Represents the data in the table
author: amangat |
Constructor Summary | |
public | DBTable(String schemaName, String tableName, List listOfRows, Integer offset, Integer numberOfRowsToReturn, Integer numberOfRowsInTable) | public | DBTable(String schemaName, String tableName, List listOfRows, Integer offset, Integer numberOfRowsToReturn, List listOfcolumnInfos) |
DBTable | public DBTable(String schemaName, String tableName, List listOfRows, Integer offset, Integer numberOfRowsToReturn, Integer numberOfRowsInTable)(Code) | | Constructer
Parameters: schemaName - Parameters: tableName - Parameters: listOfRows - Parameters: offset - Parameters: numberOfRowsToReturn - Parameters: numberOfRowsInTable - |
DBTable | public DBTable(String schemaName, String tableName, List listOfRows, Integer offset, Integer numberOfRowsToReturn, List listOfcolumnInfos)(Code) | | Constructer
Parameters: schemaName - Parameters: tableName - Parameters: listOfRows - Parameters: offset - Parameters: numberOfRowsToReturn - Parameters: listOfcolumnInfos - Parameters: numberOfRowsInTable - |
getListOfColumnInfos | public List getListOfColumnInfos()(Code) | | Returns the list of column info objects. Each column info describes a column in the db table
- a list of columnInfo objects |
getListOfRows | public List getListOfRows()(Code) | | Returns the list of rows in the db table
- a list of DBRow objects |
getNumberOfRowsInTable | public Integer getNumberOfRowsInTable()(Code) | | Get the number of rows in the table
|
getNumberOfRowsToReturn | public Integer getNumberOfRowsToReturn()(Code) | | Returns the number of rows to return
|
getOffset | public Integer getOffset()(Code) | | Returns the offset for the data
|
getSchemaName | public String getSchemaName()(Code) | | Returns the name of the schema
|
getTableName | public String getTableName()(Code) | | Returns the name of the table
|
|
|