| java.lang.Object com.ziclix.python.sql.pipe.db.BaseDB
All known Subclasses: com.ziclix.python.sql.pipe.db.DBSink, com.ziclix.python.sql.pipe.db.DBSource,
BaseDB | abstract public class BaseDB (Code) | | Abstract class to assist in generating cursors.
author: brian zimmer version: $Revision: 2414 $ |
Method Summary | |
protected PyCursor | cursor() Create a new constructor and optionally bind a new DataHandler. |
dataHandler | protected Class dataHandler(Code) | | Field dataHandler
|
cursor | protected PyCursor cursor()(Code) | | Create a new constructor and optionally bind a new DataHandler. The new DataHandler must act as
a Decorator, having a single argument constructor of another DataHandler. The new DataHandler is
then expected to delegate all calls to the original while enhancing the functionality in any matter
desired. This allows additional functionality without losing any previous work or requiring any
complicated inheritance dependencies.
|
|
|