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

Packages that use DBRecord
org.apache.empire.db This package contains the core Empire-DB implementation classes. 
 

Uses of DBRecord in org.apache.empire.db
 

Methods in org.apache.empire.db that return DBRecord
 DBRecord DBRecord.clone()
           
 

Methods in org.apache.empire.db with parameters of type DBRecord
 boolean DBView.createRecord(DBRecord rec, java.sql.Connection conn)
           
 boolean DBTable.createRecord(DBRecord rec, java.sql.Connection conn)
          Gets all table fields and the fields properties.
abstract  boolean DBRowSet.createRecord(DBRecord rec, java.sql.Connection conn)
           
 boolean DBQuery.createRecord(DBRecord rec, java.sql.Connection conn)
          Returns an error, because querys could't add new records to the database.
 java.lang.Object[] DBRowSet.getRecordKey(DBRecord rec)
          Returns a array of primary key columns by a specified DBRecord object.
 java.lang.Object[] DBQuery.getRecordKey(DBRecord record)
          Returns a array of primary key columns by a specified DBRecord object.
 boolean DBRowSet.initRecord(DBRecord rec, DBRecordData recData)
          Initializes a DBRecord for this rowset using the record data provided (i.e. from a DBReader)
The record may then be modified and updated.
 boolean DBRowSet.initRecord(DBRecord rec, java.lang.Object[] keyValues)
          Initializes a DBRecord for this RowSet and sets primary key values (the Object[] keyValues).
 boolean DBQuery.initRecord(DBRecord rec, java.lang.Object[] keyValues)
          Initialize specified DBRecord object with primary key columns (the Object[] keyValues).
 boolean DBReader.initRecord(DBRowSet rowset, DBRecord rec)
           initializes a DBRecord object with the values of the current row.
 boolean DBRowSet.readRecord(DBRecord rec, java.lang.Object[] key, java.sql.Connection conn)
          Reads the record with the given primary key from the database.
 boolean DBQuery.readRecord(DBRecord rec, java.lang.Object[] key, java.sql.Connection conn)
          Creates a select SQL-Command of the query call the InitRecord method to execute the SQL-Command.
 boolean DBView.updateRecord(DBRecord rec, java.sql.Connection conn)
           
 boolean DBRowSet.updateRecord(DBRecord rec, java.sql.Connection conn)
          Updates or Inserts a record in the database.
 boolean DBQuery.updateRecord(DBRecord rec, java.sql.Connection conn)
          Updates a query record by creating individual update commands for each table.