Uses of Class
org.dspace.storage.rdbms.TableRow

Packages that use TableRow
org.dspace.content Provides an API for reading and manipulating content in the DSpace system. 
org.dspace.eperson Provides classes representing e-people and groups of e-people. 
org.dspace.storage.rdbms Provides an API for accessing a relational database management system. 
 

Uses of TableRow in org.dspace.content
 

Constructors in org.dspace.content with parameters of type TableRow
MetadataField(TableRow row)
          Constructor to load the object from the database.
MetadataSchema(TableRow row)
          Constructor for loading the metadata schema from the database.
MetadataValue(TableRow row)
          Construct the metadata object from the matching database row.
 

Uses of TableRow in org.dspace.eperson
 

Methods in org.dspace.eperson that return TableRow
protected static TableRow AccountManager.sendInfo(Context context, String email, boolean isRegister, boolean send)
           
 

Uses of TableRow in org.dspace.storage.rdbms
 

Methods in org.dspace.storage.rdbms that return TableRow
static TableRow DatabaseManager.create(Context context, String table)
          Create a new row in the given table, and assigns a unique id.
static TableRow DatabaseManager.find(Context context, String table, int id)
          Find a table row by its primary key.
static TableRow DatabaseManager.findByUnique(Context context, String table, String column, Object value)
          Find a table row by a unique value.
 TableRow TableRowIterator.next()
          Advance to the next row and return it.
static TableRow DatabaseManager.querySingle(Context context, String query, Object... parameters)
          Return the single row result to this query, or null if no result.
static TableRow DatabaseManager.querySingleTable(Context context, String table, String query, Object... parameters)
          Return the single row result to this query, or null if no result.
static TableRow DatabaseManager.row(String table)
          Create a table row object that can be passed into the insert method, not commonly used unless the table has a referential integrity constraint.
 

Methods in org.dspace.storage.rdbms with parameters of type TableRow
static int DatabaseManager.delete(Context context, TableRow row)
          Delete row from the RDBMS.
static String DatabaseManager.getPrimaryKeyColumn(TableRow row)
          Return the name of the primary key column.
static void DatabaseManager.insert(Context context, TableRow row)
          Insert a table row into the RDBMS.
static int DatabaseManager.update(Context context, TableRow row)
          Update changes to the RDBMS.
 



Copyright © 2010 DuraSpace. All Rights Reserved.