Holger's
Java API

Uses of Class
com.antelmann.sql.JDBCRowStore

Packages that use JDBCRowStore
com.antelmann.genealogy.db This package provides implementations that manage the persistence for the genealogy package. 
com.antelmann.image This package contains classes for more easily dealing with images. 
com.antelmann.sql This package contains classes to ease JDBC development and also provides useful SQL-based implementations for com.antelmann.db classes 
 

Uses of JDBCRowStore in com.antelmann.genealogy.db
 

Subclasses of JDBCRowStore in com.antelmann.genealogy.db
 class GPersonRelationStore
           
 

Uses of JDBCRowStore in com.antelmann.image
 

Methods in com.antelmann.image that return JDBCRowStore
static
<T extends ImageURLEntry.Thumbnail<?>>
JDBCRowStore<T>
ThumbnailMapper.createStore(Database<Connection> db, Class<T> thumbnailType, Class<? extends ImageURLEntry> imageEntryType, String tableName, String idColumn, String thumbnailColumn, String urlColumn, String displayColumn)
           
 

Uses of JDBCRowStore in com.antelmann.sql
 

Subclasses of JDBCRowStore in com.antelmann.sql
 class DetailRowStore<T extends PropertyEntry>
          Deprecated. use PropertyEntryTableStore instead
 class GenericPropertyEntryStore<T extends PropertyEntry>
          automatically maps a PropertyEntry class to a database, where some default assumptions have to be met.
 class RelationshipStore<T extends DefaultEntryRelationship>
          provides an SQL-based store for relationships.
 class UserImplStore<T extends UserImpl>
          provides a user store implementation that implements UserLoginStore, so that the database can be queried based on that interface.
 

Methods in com.antelmann.sql that return JDBCRowStore
static
<T extends DBEntry>
JDBCRowStore<T>
MappedEntryMapper.createStore(Database<Connection> db, Class<T> type)
          convenience method to easily create a store with no factory
static
<T extends DBEntry>
JDBCRowStore<T>
MappedEntryMapper.createStore(Database<Connection> db, Class<T> type, boolean useNextIntForID)
          convenience method to easily create a store and use BaseRowMapper.getNextIntID() to implement BaseRowMapper.generateNewID()
static
<T extends DBEntry>
JDBCRowStore<T>
MappedEntryMapper.createStore(Database<Connection> db, Class<T> type, boolean useNextIntForID, boolean fastDelete)
          convenience method to easily create a store and use BaseRowMapper.getNextIntID() to implement BaseRowMapper.generateNewID()
static
<T extends DBEntry>
JDBCRowStore<T>
MappedEntryMapper.createStore(Database<Connection> db, Class<T> type, IDFactory factory, boolean enableFastDelete)
          convenience method to easily create a store
 JDBCRowStore<T> JDBCRowStore.setFastDelete(boolean fastDelete)
          allows to set a flag that enables this implementation to directly delete on the JDBC level - if applicable.
 



(c) Holger Antelmann since 2001- all rights reserved (contact: info@antelmann.com)
see www.antelmann.com/developer for further details and available downloads