Uses of Class
org.apache.empire.db.DBRowSet

Packages that use DBRowSet
org.apache.empire.db This package contains the core Empire-DB implementation classes. 
org.apache.empire.db.expr.column This package contains SQL-generator classes for column expressions. 
org.apache.empire.db.expr.join This package contains SQL-generator classes for join expressions used in the from clause. 
org.apache.empire.db.expr.set This package contains SQL-generator classes for set expressions used in the set clause. 
org.apache.empire.db.oracle This package contains classes necessary to support the Oracle database system. 
 

Uses of DBRowSet in org.apache.empire.db
 

Subclasses of DBRowSet in org.apache.empire.db
static class DBDatabaseDriver.DBSeqTable
           
 class DBQuery
          This class can be used to wrap a query from a DBCommand and use it like a DBRowSet.
 class DBTable
          This class represent one table of the database.
 class DBView
          This class represent a view of the database.
 

Methods in org.apache.empire.db that return DBRowSet
 DBRowSet DBRecord.getRowSet()
          Returns the DBRowSet object.
 DBRowSet DBColumn.getRowSet()
          Returns DBTable, DBQuery or DBView object.
 

Methods in org.apache.empire.db with parameters of type DBRowSet
 boolean DBRecord.create(DBRowSet table)
          Creates a new record for the given table.
 boolean DBRecord.create(DBRowSet table, java.sql.Connection conn)
          Creates a new record for the given table.
 boolean DBCommand.hasJoinOn(DBRowSet rowset)
          Returns true if the command has a join on the given table or false otherwise.
 boolean DBRecord.init(DBRowSet table, java.lang.Object[] keyValues, boolean insert)
          Initializes this record object by attaching it to a rowset, setting its primary key values and setting the record state.
 boolean DBRecord.initNew(DBRowSet table)
          Deprecated. use DBRecord.create(DBRowSet)
 boolean DBRecord.initNew(DBRowSet table, java.sql.Connection conn)
          Deprecated. use DBRecord.create(DBRowSet, Connection)
 boolean DBReader.initRecord(DBRowSet rowset, DBRecord rec)
           initializes a DBRecord object with the values of the current row.
 DBJoinExpr DBCommand.join(DBRowSet rowset, DBCompareExpr cmp)
          Adds an inner join based on a compare expression to the command.
 DBJoinExpr DBCommand.join(DBRowSet rowset, DBCompareExpr cmp, DBJoinType joinType)
          Adds a join based on a compare expression to the command.
 boolean DBRecord.read(DBRowSet table, java.lang.Object[] keys, java.sql.Connection conn)
          Loads a record from the database identified by it's primary key.
 boolean DBRecord.read(DBRowSet table, java.lang.Object id, java.sql.Connection conn)
          Loads a record from the database identified by it's primary key.
 

Uses of DBRowSet in org.apache.empire.db.expr.column
 

Constructors in org.apache.empire.db.expr.column with parameters of type DBRowSet
DBCountExpr(DBRowSet rowset)
          Constructs a DBCountExpr.
 

Uses of DBRowSet in org.apache.empire.db.expr.join
 

Methods in org.apache.empire.db.expr.join that return DBRowSet
 DBRowSet DBJoinExpr.getOuterTable()
          Returns the left table name if the data type= JOIN_LEFT and returns the right table if the data type= JOIN_RIGHT.
 

Methods in org.apache.empire.db.expr.join with parameters of type DBRowSet
 boolean DBJoinExpr.isJoinOn(DBRowSet rowset)
           
 

Constructors in org.apache.empire.db.expr.join with parameters of type DBRowSet
DBJoinExprEx(DBRowSet rset, DBCompareExpr cmp, DBJoinType joinType)
          Constructor
 

Uses of DBRowSet in org.apache.empire.db.expr.set
 

Methods in org.apache.empire.db.expr.set that return DBRowSet
 DBRowSet DBSetExpr.getTable()
          Returns the current DBDatabase object.
 

Uses of DBRowSet in org.apache.empire.db.oracle
 

Subclasses of DBRowSet in org.apache.empire.db.oracle
static class OracleSYSDatabase.DBColComments
           
static class OracleSYSDatabase.DBColInfo
           
static class OracleSYSDatabase.DBConstraints
           
static class OracleSYSDatabase.DBTabComments
           
static class OracleSYSDatabase.DBUserConCol