| java.lang.Object com.salmonllc.sql.DataStoreBuffer com.salmonllc.sql.BeanDataStore com.salmonllc.hibernate.HibernateDataStore
HibernateDataStore | public class HibernateDataStore extends BeanDataStore implements DataStoreQBEInterface(Code) | | A bean datastore that can automatically retrieve and persist data via
Hibernate HQL and session API
|
HibernateDataStore | public HibernateDataStore()(Code) | | Construct a new Hibernate DataStore. The DataStore must then be
configured by calling addClass, setFrom, setWhere, setOrder, setJoin,
etc.. before it can be used.
|
HibernateDataStore | public HibernateDataStore(BeanClassInfo inf, String extraInfo) throws ClassNotFoundException(Code) | | Constuct a new HibernateDataStore passing an array of
BeanDataStore.BeanClassInfo objects (so the DataStore can handle multiple
objects in it's select) and a string of extra information from the JSP
tag
throws: ClassNotFoundException - |
addBeanDefinition | public void addBeanDefinition(Class beanType, String alias)(Code) | | Add a bean to the DataStore's buffer. The contents of each bean added
will be loaded when retrieve() is called.
Parameters: beanType - The class name for the bean Parameters: alias - The name the bean is referenced by |
autoRetrieve | public void autoRetrieve() throws Exception(Code) | | Builds and loads the datastore using AutoRetrieve selection criteria from
the JSP
|
beanDeleted | public void beanDeleted(Object bean)(Code) | | Called when a bean should be deleted from the database, subclasses may
override
|
beanUpdated | public void beanUpdated(Object bean, boolean newBean) throws Exception(Code) | | Called when a bean should be added or updated in the database, subclasses
may override
|
buildCriteriaStringForRow | public String buildCriteriaStringForRow(int row)(Code) | | Builds selection criteria for the primary key field for the specified row
|
createBean | protected Object createBean()(Code) | | Override this method to provide your own creation logic when a new bean is added to the datastore
the bean to add |
estimateRowsRetrieved | public int estimateRowsRetrieved(String criteria) throws Exception(Code) | | Estimate the number of rows retrieved for a particular selection criteria
string
|
execute | public void execute(String query) throws Exception(Code) | | Execute an arbitrary HSQL query, loading the results into the datastore
buffer. The objects retrieved must match the classes specifed when the
datastore was created.
throws: Exception - |
getAliasCount | public int getAliasCount()(Code) | | Returns the number of classes the datastore accesses
|
getColumnDatabaseName | public String getColumnDatabaseName(int col) throws DataStoreException(Code) | | Returns the name of the specified column in the database query
|
getColumnsForTable | public ColumnDefinition[] getColumnsForTable(String table)(Code) | | Return all the available attributes for a particular class
|
getDBMS | public String getDBMS()(Code) | | Returns Props.DBMSTYPE_HIBERNATE
|
getDataTypeForMethod | protected int getDataTypeForMethod(Class beanType, Method getMethod)(Code) | | |
getDistinct | public boolean getDistinct()(Code) | | Returns whether or not a distinct will be added before each query. |
getFrom | public String getFrom()(Code) | | the from clause for the HQL query. Should contain tables and aliases for
this query for classes that are being used to query the data (joins,
selection criteria), but not actually loaded when the query is executed.
Classes that should be loaded should be specified using the addBean
method
|
getJoin | public String getJoin()(Code) | | For HQL joins in the from clause of the query. Joins may also go in the
where clause as well.
|
getOrderBy | public String getOrderBy()(Code) | | the order by clause for the HQL query
|
getTableList | public String[] getTableList(boolean updateable)(Code) | | Get a list of aliaes for the objects used in this datastore
|
getWhere | public String getWhere()(Code) | | selection or join criteria used when this datastore is loaded
|
initValues | protected void initValues()(Code) | | |
insertRow | public int insertRow()(Code) | | |
insertRow | public int insertRow(int atPosition)(Code) | | |
parseExtraInfo | protected void parseExtraInfo(String extraInfo)(Code) | | Parses an beanextrainfo attribute string from the datasource into from,where, orderby etc...
|
retrieve | public void retrieve(String criteriaString) throws DataStoreException(Code) | | Loads the data into the DataStore
criteriaString:The selection criteria to use or null for all possible values |
retrieve | public void retrieve() throws Exception(Code) | | Loads the data into the DataStore
|
setDistinct | public void setDistinct(boolean distinct)(Code) | | sets whether or not a distinct will be added before each query. |
setFrom | public void setFrom(String from) throws ClassNotFoundException(Code) | | the from clause for the HQL query. Should contain tables and aliases for
this query for classes that are being used to query the data (joins,
selection criteria), but not actually loaded when the query is executed.
Classes that should be loaded should be specified using the addBean
method
throws: ClassNotFoundException - |
setJoin | public void setJoin(String join)(Code) | | For HQL joins in the from clause of the query. Joins may also go in the
where clause as well.
|
setOrderBy | public void setOrderBy(String order)(Code) | | the order by clause for the HQL query
|
setWhere | public void setWhere(String where)(Code) | | selection or join criteria used when this datastore is loaded
|
update | public synchronized void update() throws Exception(Code) | | Persists the changes made to the database back to the beans and also to
the database. Transaction's will be handled automatically from within the
datastore.
|
update | public void update(boolean handleTrans) throws Exception(Code) | | Persists the changes made to the database back to the beans and also to
the database. Transaction's will be handled automatically from within the
datastore if the handleTrans argument is true, otherwise you must handle
it yourself outside the datastore using the Hibernate session object.
|
Fields inherited from com.salmonllc.sql.BeanDataStore | final public static int LOAD_ALL(Code)(Java Doc)
|
Methods inherited from com.salmonllc.sql.BeanDataStore | public void addBeanDefinition(Class beanType, String alias)(Code)(Java Doc) public void beanDeleted(Object bean)(Code)(Java Doc) public void beanUpdated(Object bean, boolean newBean) throws Exception(Code)(Java Doc) public String buildCriteriaStringForRow(int row)(Code)(Java Doc) public static BeanDataStore constructBeanDataStore(String className, String beanName, String extraInfo)(Code)(Java Doc) public void delete(int row, Object deleteBean, Method deleteMethod) throws DataStoreException(Code)(Java Doc) public synchronized boolean deleteRow()(Code)(Java Doc) public synchronized boolean deleteRow(int row)(Code)(Java Doc) public void deleteRowBean(int row) throws DataStoreException(Code)(Java Doc) public Collection find(Collection dataRows, Object findBean, Method findMethod) throws DataStoreException(Code)(Java Doc) public Object getBean() throws DataStoreException(Code)(Java Doc) public Object getBean(int row) throws DataStoreException(Code)(Java Doc) public Object getBean(int row, int buffer) throws DataStoreException(Code)(Java Doc) public Object[] getBeans() throws DataStoreException(Code)(Java Doc) public Object[] getBeans(int buffer) throws DataStoreException(Code)(Java Doc) public Collection getBeans(Collection dataRows) throws DataStoreException(Code)(Java Doc) public Vector getBeansAsVector() throws DataStoreException(Code)(Java Doc) public Vector getBeansAsVector(int buffer) throws DataStoreException(Code)(Java Doc) public static Throwable getCause(Exception e)(Code)(Java Doc) public DSDataRow getDataRow(int rowNo)(Code)(Java Doc) protected int getDataTypeForMethod(Class beanType, Method getMethod)(Code)(Java Doc) public DSDataStoreDescriptor getDescriptor()(Code)(Java Doc) public String getExtraInfo()(Code)(Java Doc) public boolean getLowerCaseFirstLetter()(Code)(Java Doc) public int getUpdateableColCount(DSDataRow dataRow)(Code)(Java Doc) public String[] getUpdateableFieldNames(DSDataRow dataRow) throws DataStoreException(Code)(Java Doc) public Object[] getUpdateableFieldValues(DSDataRow dataRow) throws DataStoreException(Code)(Java Doc) public void insert(Collection dataRows, Object createBean, Method createMethod) throws DataStoreException(Code)(Java Doc) public void insertInternal(Collection beans, Collection dataRows) throws DataStoreException(Code)(Java Doc) public synchronized int insertRow(Object bean)(Code)(Java Doc) public synchronized int insertRow(Object bean, boolean newBean)(Code)(Java Doc) public synchronized int insertRow(Object bean, int pos)(Code)(Java Doc) public synchronized int insertRow(Object bean, int pos, boolean newBean)(Code)(Java Doc) public synchronized void insertRows(Object bean)(Code)(Java Doc) public synchronized void insertRows(Collection c)(Code)(Java Doc) public static boolean isCollection(Class c)(Code)(Java Doc) public boolean isInserted(DSDataRow dataRow)(Code)(Java Doc) public boolean isInserted(int row)(Code)(Java Doc) public boolean isModified(DSDataRow dataRow)(Code)(Java Doc) public boolean isModified(int row)(Code)(Java Doc) public void load(Object bean, String methodName, Object[] params, int maxRows) throws DataStoreException(Code)(Java Doc) public void load(Object bean, int maxRows) throws DataStoreException(Code)(Java Doc) public void load(Object bean) throws DataStoreException(Code)(Java Doc) protected static String lowerCaseFirstLetter(String st)(Code)(Java Doc) protected static BeanClassInfo newBeanInfo(Class beanClass, String alias, int index)(Code)(Java Doc) public void partialRefreshInternal(int row, String elementPrefix) throws DataStoreException(Code)(Java Doc) public void refresh(Collection dataRows, Object findBean, Method findMethod) throws DataStoreException(Code)(Java Doc) public void refreshInternal(DSDataRow dataRow, Object bean) throws DataStoreException(Code)(Java Doc) public void refreshInternal(Collection dataRows, Collection beans) throws DataStoreException(Code)(Java Doc) public void reload(Object bean) throws DataStoreException, Exception(Code)(Java Doc) public void retrieve(String criteriaString) throws Exception(Code)(Java Doc) public void setBooleanDataType(int type, Object trueValue, Object falseValue)(Code)(Java Doc) public void setExtraInfo(String string)(Code)(Java Doc) public void setLowerCaseFirstLetter(boolean lowerCaseFirstLetter)(Code)(Java Doc) public static Class[] toClasses(Object[] array)(Code)(Java Doc) public synchronized void update() throws Exception(Code)(Java Doc) public void update(boolean resetStatus) throws Exception(Code)(Java Doc) public void update(Collection dataRows, Object storeBean, Method storeMethod) throws DataStoreException(Code)(Java Doc) public void update(Object bean, Method create, Method store, Method find) throws DataStoreException(Code)(Java Doc) public synchronized boolean updateInternal(DSDataRow dataRow) throws DataStoreException(Code)(Java Doc) public synchronized boolean updateInternal(int row) throws DataStoreException(Code)(Java Doc) public synchronized boolean updateInternal(Collection dataRows) throws DataStoreException(Code)(Java Doc)
|
Methods inherited from com.salmonllc.sql.DataStoreBuffer | public void addBucket(String internalname, int type)(Code)(Java Doc) public void addBucket(String internalname, int type, String format)(Code)(Java Doc) public void addExpressionRule(String column, DataStoreExpression expression, String errorMessage, boolean executeOnServer) throws DataStoreException(Code)(Java Doc) public void addExpressionRule(String column, String expression, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addExpressionRule(int column, DataStoreExpression expression, String errorMessage, boolean executeOnServer) throws DataStoreException(Code)(Java Doc) public void addExpressionRule(int column, String expression, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addJavaScriptRule(String column, String javaScript, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addJavaScriptRule(int column, String javaScript, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addLookupRule(String column, String lookupTable, String searchExpression, String descriptionColumn, String descriptionBucket, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addLookupRule(int column, String lookupTable, String searchExpression, String descriptionColumn, String descriptionBucket, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addModelChangedListener(ModelChangedListener l)(Code)(Java Doc) public void addRangeRule(int column, Object minValue, Object maxValue, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addRangeRule(String column, Object minValue, Object maxValue, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addRequiredRule(String column, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addRequiredRule(int column, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addReqularExpressionRule(String column, String regExp, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addReqularExpressionRule(int column, String regExp, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addTypeCheckRule(String column, String errorMessage) throws DataStoreException(Code)(Java Doc) public void addTypeCheckRule(int column, String errorMessage) throws DataStoreException(Code)(Java Doc) public void appendRows(Vector rows)(Code)(Java Doc) protected boolean areThereModelListeners()(Code)(Java Doc) public void autoRetrieve() throws Exception(Code)(Java Doc) public void clearAllValidationRules()(Code)(Java Doc) public void clearSelectedRow()(Code)(Java Doc) public void clearTempValues(int row) throws DataStoreException(Code)(Java Doc) public void clearTempValues() throws DataStoreException(Code)(Java Doc) public void clearValidationRules(int column) throws DataStoreException(Code)(Java Doc) public void clearValidationRules(String column) throws DataStoreException(Code)(Java Doc) public int compareRows(int row1, int row2, int[] cols)(Code)(Java Doc) public int compareRows(int row1, int row2, String[] cols)(Code)(Java Doc) public Object convertValue(String val, String columnName) throws DataStoreException(Code)(Java Doc) public static Object convertValue(String val, int dataType) throws ParseException(Code)(Java Doc) public boolean deleteRow()(Code)(Java Doc) public boolean deleteRow(int row)(Code)(Java Doc) public String export() throws com.salmonllc.sql.DataStoreException(Code)(Java Doc) public void export(int format, boolean includeHeaders, PrintWriter p)(Code)(Java Doc) public void export(PrintWriter p) throws com.salmonllc.sql.DataStoreException(Code)(Java Doc) public void filter(String filter) throws DataStoreException(Code)(Java Doc) public void filterQBE(QBEBuilder filter) throws DataStoreException(Code)(Java Doc) public synchronized int find(int start, int end) throws DataStoreException(Code)(Java Doc) public synchronized boolean findFirst() throws DataStoreException(Code)(Java Doc) public synchronized boolean findLast() throws DataStoreException(Code)(Java Doc) public synchronized boolean findNext() throws DataStoreException(Code)(Java Doc) public synchronized boolean findPrior() throws DataStoreException(Code)(Java Doc) public static String fixQuote(String data, int dataType)(Code)(Java Doc) public static String fixQuote(String data, int dataType, String connectionType)(Code)(Java Doc) protected String fixSpecialHTMLCharacters(String input)(Code)(Java Doc) public boolean getAllowMasterRowDelete()(Code)(Java Doc) public Object getAny(int column) throws DataStoreException(Code)(Java Doc) public Object getAny(int row, int column) throws DataStoreException(Code)(Java Doc) public Object getAny(int row, String column) throws DataStoreException(Code)(Java Doc) public Object getAny(String column) throws DataStoreException(Code)(Java Doc) public boolean getAutoBind()(Code)(Java Doc) public int getAutoRetrieve()(Code)(Java Doc) public AutoRetrieveCriteria getAutoRetrieveCriteria()(Code)(Java Doc) public boolean getBucketsModified()(Code)(Java Doc) public boolean getBucketsModified(int row)(Code)(Java Doc) public byte[] getByteArray(int column) throws DataStoreException(Code)(Java Doc) public byte[] getByteArray(int row, int column) throws DataStoreException(Code)(Java Doc) public byte[] getByteArray(int row, String column) throws DataStoreException(Code)(Java Doc) public byte[] getByteArray(String column) throws DataStoreException(Code)(Java Doc) public int getColumnCount()(Code)(Java Doc) public int getColumnDataType(int column) throws DataStoreException(Code)(Java Doc) public int getColumnDataType(String column) throws DataStoreException(Code)(Java Doc) public int getColumnIndex(String column)(Code)(Java Doc) public String[] getColumnList()(Code)(Java Doc) public String getColumnName(int col) throws DataStoreException(Code)(Java Doc) public DataStoreRow getDataStoreRow(int rowNo, int buffer) throws DataStoreException(Code)(Java Doc) public java.sql.Date getDate(int column) throws DataStoreException(Code)(Java Doc) public java.sql.Date getDate(int row, int column) throws DataStoreException(Code)(Java Doc) public java.sql.Date getDate(int row, String column) throws DataStoreException(Code)(Java Doc) public java.sql.Date getDate(String column) throws DataStoreException(Code)(Java Doc) public Timestamp getDateTime(int column) throws DataStoreException(Code)(Java Doc) public Timestamp getDateTime(int row, int column) throws DataStoreException(Code)(Java Doc) public Timestamp getDateTime(int row, String column) throws DataStoreException(Code)(Java Doc) public java.sql.Timestamp getDateTime(String column) throws DataStoreException(Code)(Java Doc) public int getDeletedCount()(Code)(Java Doc) public double getDouble(int column) throws DataStoreException(Code)(Java Doc) public double getDouble(int row, int column) throws DataStoreException(Code)(Java Doc) public double getDouble(int row, String column) throws DataStoreException(Code)(Java Doc) public double getDouble(String column) throws DataStoreException(Code)(Java Doc) public int getFilteredCount()(Code)(Java Doc) public float getFloat(int column) throws DataStoreException(Code)(Java Doc) public float getFloat(int row, int column) throws DataStoreException(Code)(Java Doc) public float getFloat(int row, String column) throws DataStoreException(Code)(Java Doc) public float getFloat(String column) throws DataStoreException(Code)(Java Doc) public String getFormat(int col) throws DataStoreException(Code)(Java Doc) public String getFormat(String col) throws DataStoreException(Code)(Java Doc) public String getFormattedString(int column) throws DataStoreException(Code)(Java Doc) public String getFormattedString(int row, int column) throws DataStoreException(Code)(Java Doc) public String getFormattedString(int row, String column) throws DataStoreException(Code)(Java Doc) public String getFormattedString(String column) throws DataStoreException(Code)(Java Doc) public int getInt(int column) throws DataStoreException(Code)(Java Doc) public int getInt(int row, int column) throws DataStoreException(Code)(Java Doc) public int getInt(int row, String column) throws DataStoreException(Code)(Java Doc) public int getInt(String column) throws DataStoreException(Code)(Java Doc) public LanguagePreferences getLang()(Code)(Java Doc) public long getLong(int column) throws DataStoreException(Code)(Java Doc) public long getLong(int row, int column) throws DataStoreException(Code)(Java Doc) public long getLong(int row, String column) throws DataStoreException(Code)(Java Doc) public long getLong(String column) throws DataStoreException(Code)(Java Doc) protected Vector getModelListeners()(Code)(Java Doc) public Object getNullDefault(int dataType)(Code)(Java Doc) protected int getObjectType(Object obj)(Code)(Java Doc) public Properties getProperties()(Code)(Java Doc) public int getProxyRow(int rowNo)(Code)(Java Doc) public String getRemoteID()(Code)(Java Doc) public String getRemoteUpdateReturnValue()(Code)(Java Doc) public int getRow()(Code)(Java Doc) public int getRowCount()(Code)(Java Doc) public int getRowStatus()(Code)(Java Doc) public int getRowStatus(int row)(Code)(Java Doc) public Vector getRows()(Code)(Java Doc) public short getShort(int column) throws DataStoreException(Code)(Java Doc) public short getShort(int row, int column) throws DataStoreException(Code)(Java Doc) public short getShort(int row, String column) throws DataStoreException(Code)(Java Doc) public short getShort(String column) throws DataStoreException(Code)(Java Doc) public String getString(int column) throws DataStoreException(Code)(Java Doc) public String getString(int row, int column) throws DataStoreException(Code)(Java Doc) public String getString(int row, String column) throws DataStoreException(Code)(Java Doc) public String getString(String column) throws DataStoreException(Code)(Java Doc) public String[] getTableList(boolean updateable)(Code)(Java Doc) public String getTempValue(int row, int column) throws DataStoreException(Code)(Java Doc) public String getTempValue(int row, String column) throws DataStoreException(Code)(Java Doc) public String getTempValue(String column) throws DataStoreException(Code)(Java Doc) public String getTempValue(int column) throws DataStoreException(Code)(Java Doc) public java.sql.Time getTime(int column) throws DataStoreException(Code)(Java Doc) public java.sql.Time getTime(int row, int column) throws DataStoreException(Code)(Java Doc) public java.sql.Time getTime(int row, String column) throws DataStoreException(Code)(Java Doc) public java.sql.Time getTime(String column) throws DataStoreException(Code)(Java Doc) public static String getTypeDescription(int type)(Code)(Java Doc) public ValidationRule[] getValidationRulesForColumn(int colNo)(Code)(Java Doc) public synchronized boolean gotoFirst()(Code)(Java Doc) public synchronized boolean gotoLast()(Code)(Java Doc) public synchronized boolean gotoNext()(Code)(Java Doc) public synchronized boolean gotoPrior()(Code)(Java Doc) public synchronized boolean gotoRow(int row)(Code)(Java Doc) public boolean hasManyToOneRelationship()(Code)(Java Doc) public boolean hasTempValues(int row) throws DataStoreException(Code)(Java Doc) public void importRow(com.salmonllc.xml.Row row) throws DataStoreException(Code)(Java Doc) public int insertRow()(Code)(Java Doc) public int insertRow(int atPosition)(Code)(Java Doc) protected synchronized void interruptWaitingCancelThreads()(Code)(Java Doc) protected synchronized void interruptWaitingRetrieveThreads()(Code)(Java Doc) public boolean isColumnInOneToManyRelationship(String sColumn)(Code)(Java Doc) public boolean isColumnModified(int row, int column) throws DataStoreException(Code)(Java Doc) public boolean isColumnModified(int row, String column) throws DataStoreException(Code)(Java Doc) public boolean isFormattedStringValid(int column, String value) throws DataStoreException(Code)(Java Doc) public boolean isFormattedStringValid(String column, String value) throws DataStoreException(Code)(Java Doc) public void notifyListeners(ModelChangedEvent e)(Code)(Java Doc) protected void notifyListeners(int type)(Code)(Java Doc) public void removeModelChangedListener(ModelChangedListener l)(Code)(Java Doc) public boolean removeRow()(Code)(Java Doc) public boolean removeRow(int row)(Code)(Java Doc) public synchronized void reset()(Code)(Java Doc) public void resetStatus()(Code)(Java Doc) public void setAllowMasterRowDelete(boolean bAllow)(Code)(Java Doc) public void setAny(int row, int column, Object value) throws DataStoreException(Code)(Java Doc) public void setAny(int column, Object value) throws DataStoreException(Code)(Java Doc) public void setAny(int row, String column, Object value) throws DataStoreException(Code)(Java Doc) public void setAny(String column, Object value) throws DataStoreException(Code)(Java Doc) public void setAutoBind(boolean value)(Code)(Java Doc) public void setAutoRetrieve(int value)(Code)(Java Doc) public void setAutoRetrieveCriteria(AutoRetrieveCriteria crit)(Code)(Java Doc) public void setBucketsModified(int row, boolean modified)(Code)(Java Doc) public void setBucketsModified(boolean modified)(Code)(Java Doc) public void setByteArray(int column, byte[] value) throws DataStoreException(Code)(Java Doc) public void setByteArray(int row, int column, byte[] value) throws DataStoreException(Code)(Java Doc) public void setByteArray(int row, String column, byte[] value) throws DataStoreException(Code)(Java Doc) public void setByteArray(String column, byte[] value) throws DataStoreException(Code)(Java Doc) protected void setCurrentRow(int currentRow)(Code)(Java Doc) public void setDataStoreRow(int rowNo, int buffer, DataStoreRow row) throws DataStoreException(Code)(Java Doc) public void setDate(int row, int column, java.sql.Date value) throws DataStoreException(Code)(Java Doc) public void setDate(int row, String column, java.sql.Date value) throws DataStoreException(Code)(Java Doc) public void setDate(int column, java.sql.Date value) throws DataStoreException(Code)(Java Doc) public void setDate(String column, java.sql.Date value) throws DataStoreException(Code)(Java Doc) public void setDateTime(int row, int column, java.sql.Timestamp value) throws DataStoreException(Code)(Java Doc) public void setDateTime(int row, String column, java.sql.Timestamp value) throws DataStoreException(Code)(Java Doc) public void setDateTime(int column, java.sql.Timestamp value) throws DataStoreException(Code)(Java Doc) public void setDateTime(String column, java.sql.Timestamp value) throws DataStoreException(Code)(Java Doc) public void setDistinct(boolean distinct)(Code)(Java Doc) public void setDouble(int column, double value) throws DataStoreException(Code)(Java Doc) public void setDouble(int row, int column, double value) throws DataStoreException(Code)(Java Doc) public void setDouble(int row, String column, double value) throws DataStoreException(Code)(Java Doc) public void setDouble(String column, double value) throws DataStoreException(Code)(Java Doc) public void setFindExpression(String exp) throws DataStoreException(Code)(Java Doc) public void setFloat(int column, float value) throws DataStoreException(Code)(Java Doc) public void setFloat(int row, int column, float value) throws DataStoreException(Code)(Java Doc) public void setFloat(int row, String column, float value) throws DataStoreException(Code)(Java Doc) public void setFloat(String column, float value) throws DataStoreException(Code)(Java Doc) public void setFormat(int col, String format) throws DataStoreException(Code)(Java Doc) public void setFormat(String col, String format) throws DataStoreException(Code)(Java Doc) public void setFormattedString(int row, int column, String value) throws DataStoreException(Code)(Java Doc) public void setFormattedString(int column, String value) throws DataStoreException(Code)(Java Doc) public void setFormattedString(int row, String column, String value) throws DataStoreException(Code)(Java Doc) public void setFormattedString(String column, String value) throws DataStoreException(Code)(Java Doc) public void setInt(int row, int column, int value) throws DataStoreException(Code)(Java Doc) public void setInt(int row, String column, int value) throws DataStoreException(Code)(Java Doc) public void setInt(String column, int value) throws DataStoreException(Code)(Java Doc) public void setLang(LanguagePreferences preferences)(Code)(Java Doc) public void setLong(int row, int column, long value) throws DataStoreException(Code)(Java Doc) public void setLong(int column, long value) throws DataStoreException(Code)(Java Doc) public void setLong(int row, String column, long value) throws DataStoreException(Code)(Java Doc) public void setLong(String column, long value) throws DataStoreException(Code)(Java Doc) public void setNullDefault(int dataType, Object defaultValue)(Code)(Java Doc) public void setOrderBy(String orderBy)(Code)(Java Doc) public void setPrimaryKey(int col, boolean pkey) throws DataStoreException(Code)(Java Doc) public void setPrimaryKey(String col, boolean pkey) throws DataStoreException(Code)(Java Doc) public void setProperties(Properties p)(Code)(Java Doc) public void setRemoteID(String remoteID)(Code)(Java Doc) public void setRemoteUpdateReturnValue(String update)(Code)(Java Doc) public boolean setRowStatus(int status)(Code)(Java Doc) public boolean setRowStatus(int row, int status)(Code)(Java Doc) public void setRows(Vector rows)(Code)(Java Doc) public void setShort(int row, int column, short value) throws DataStoreException(Code)(Java Doc) public void setShort(int row, String column, short value) throws DataStoreException(Code)(Java Doc) public void setShort(int column, short value) throws DataStoreException(Code)(Java Doc) public void setShort(String column, short value) throws DataStoreException(Code)(Java Doc) public void setString(int row, int column, String value) throws DataStoreException(Code)(Java Doc) public void setString(int column, String value) throws DataStoreException(Code)(Java Doc) public void setString(int row, String column, String value) throws DataStoreException(Code)(Java Doc) public void setString(String column, String value) throws DataStoreException(Code)(Java Doc) public void setTempValue(int row, int col, String value) throws DataStoreException(Code)(Java Doc) public void setTempValue(int col, String value) throws DataStoreException(Code)(Java Doc) public void setTempValue(String col, String value) throws DataStoreException(Code)(Java Doc) public void setTime(int row, int column, java.sql.Time value) throws DataStoreException(Code)(Java Doc) public void setTime(int row, String column, java.sql.Time value) throws DataStoreException(Code)(Java Doc) public void setTime(int column, java.sql.Time value) throws DataStoreException(Code)(Java Doc) public void setTime(String column, java.sql.Time value) throws DataStoreException(Code)(Java Doc) public void sort(int[] col, int dir) throws DataStoreException(Code)(Java Doc) public void sort(int[] col, int dir, boolean bUseQSAlgoritm) throws DataStoreException(Code)(Java Doc) public void sort(Object[] obj, int dir) throws DataStoreException(Code)(Java Doc) public void sort(String col, int dir) throws DataStoreException(Code)(Java Doc) public void sort(int col, int dir) throws DataStoreException(Code)(Java Doc) public void sort(DataStoreEvaluator eval, int dir) throws DataStoreException(Code)(Java Doc) public void sort(String col, int dir) throws DataStoreException(Code)(Java Doc) public int unDeleteRow(int row)(Code)(Java Doc) public void undoChanges(int row)(Code)(Java Doc) public DataStoreException[] validateColumn(int rowNo, String colName, DBConnection conn)(Code)(Java Doc) public DataStoreException[] validateColumn(int rowNo, int colNo, DBConnection conn)(Code)(Java Doc) protected void validateColumn(int rowNo, int colNo, Vector v, DBConnection conn)(Code)(Java Doc) public DataStoreException[] validateRow(int rowNo, DBConnection conn)(Code)(Java Doc) public DataStoreException[] validateRowsToUpdate(DBConnection conn, boolean stopAtFirstError)(Code)(Java Doc) public boolean valueEqual(int row, int col, Object value) throws DataStoreException(Code)(Java Doc) public boolean valueGreater(int row, int col, Object value) throws DataStoreException(Code)(Java Doc) public boolean valueLess(int row, int col, Object value) throws DataStoreException(Code)(Java Doc) public void waitForCancel()(Code)(Java Doc) public void waitForRetrieve()(Code)(Java Doc) public void waitForRetrieve(int iSeconds)(Code)(Java Doc) protected void waitForRow(int row)(Code)(Java Doc)
|
|
|