| java.util.TreeSet com.knowgate.dataobjs.DBKeySet
DBKeySet | public class DBKeySet extends TreeSet (Code) | | Load a primary keys set from the database into a java.util.TreeSet
author: Sergio Montoro Ten version: 1.0 |
DBKeySet | public DBKeySet(String sTableName, String sColumnName, String sWhereClause, int iLimit)(Code) | | Parameters: sTableName - Table Name Parameters: sColumnName - Column Name Parameters: sWhereClause - SQL WHERE clause Parameters: iLimit - Absolute maximum number of primary key to be loaded |
load | public int load(JDCConnection oConn) throws SQLException(Code) | | Load primary keys from the database to this TreeSet
Parameters: oConn - JDBC Database Connection Number of keys actually readed throws: SQLException - |
load | public int load(JDCConnection oConn, Object[] aParams) throws SQLException(Code) | | Load primary keys from the database to this TreeSet
Parameters: oConn - JDBC Database Connection Parameters: aParams - Parameters to be binded to prepared SQL Number of keys actually readed throws: SQLException - |
|
|