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.identifier   
org.dspace.storage.rdbms Provides an API for accessing a relational database management system. 
org.dspace.versioning   
 

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.identifier
 

Methods in org.dspace.identifier that return TableRow
protected static TableRow VersionedHandleIdentifierProvider.findHandleInternal(Context context, String handle)
          Find the database row corresponding to handle.
protected static TableRow HandleIdentifierProvider.findHandleInternal(Context context, String handle)
          Find the database row corresponding to handle.
protected static TableRow VersionedHandleIdentifierProvider.getHandleInternal(Context context, int type, int id)
          Return the handle for an Object, or null if the Object has no handle.
protected static TableRow HandleIdentifierProvider.getHandleInternal(Context context, int type, int id)
          Return the handle for an Object, or null if the Object has no handle.
 

Methods in org.dspace.identifier with parameters of type TableRow
protected  String VersionedHandleIdentifierProvider.modifyHandleRecord(Context context, DSpaceObject dso, TableRow handle, String handleId)
           
protected  String HandleIdentifierProvider.modifyHandleRecord(Context context, DSpaceObject dso, TableRow handle, String handleId)
           
 

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 that return types with arguments of type TableRow
 List<TableRow> TableRowIterator.toList()
          Saves all the values returned by iterator into a list.
 

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.
 

Uses of TableRow in org.dspace.versioning
 

Methods in org.dspace.versioning that return TableRow
protected  TableRow VersionHistoryImpl.getMyRow()
           
protected  TableRow VersionImpl.getMyRow()
           
 

Constructors in org.dspace.versioning with parameters of type TableRow
VersionHistoryImpl(Context c, TableRow row)
           
VersionImpl(Context c, TableRow row)
           
 



Copyright © 2012 DuraSpace. All Rights Reserved.