Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.javahispano.canyamo.services.persistence.DbCondition

Uses of DbCondition in org.javahispano.canyamo.services.persistence
 

Methods in org.javahispano.canyamo.services.persistence that return DbCondition
 DbCondition DbCondition.cloneIt()
          Description of the Method
 

Methods in org.javahispano.canyamo.services.persistence with parameters of type DbCondition
 java.util.List DbManager.select(DbCondition condition)
          Select all records which satisfied the given Condition
 java.util.List DbManager.select(DbCondition condition, java.lang.String table)
          Select all records which satisfied the given Condition from the given table
 java.util.List DbManager.select(DbCondition condition, DbOrder order)
          Select all records which satisfied the given DbCondition following the given DbOrder
 java.util.List DbManager.select(DbCondition condition, DbOrder order, java.lang.String table)
          Select all records which satisfied the given DbCondition following the given DbOrder from the given table
 java.util.List DbManager.select(DbCondition condition, DbOrder order, int size)
          Select size records which satisfied the given DbCondition following the given DbOrder
 java.util.List DbManager.select(DbCondition condition, DbOrder order, int size, java.lang.String table)
          Select size records which satisfied the given DbCondition following the given DbOrder from the given table
 java.util.List DbManager.select(DbCondition condition, DbOrder order, int pos, int size)
          Select size records from position pos which satisfied the given DbCondition following the given DbOrder
 java.util.List DbManager.select(DbCondition condition, DbOrder order, int pos, int size, java.lang.String table)
          Select size records from position pos which satisfied the given DbCondition following the given DbOrder from the given table
 int DbManager.selectCount(java.lang.String type, DbCondition condition)
          Counts the number of objects of the given types which satisfied the given condition
 int DbManager.selectCount(java.lang.String type, DbCondition condition, java.lang.String table)
          Counts the number of objects of the given types which satisfied the given condition from the given table
 java.lang.Object DbManager.selectMax(java.lang.String type, java.lang.String field, DbCondition condition)
          Select the max value for a given fieldm of a given record type, which satisfied the given condition
 java.lang.Object DbManager.selectMax(java.lang.String type, java.lang.String field, DbCondition condition, java.lang.String table)
          Select the max value for a given fieldm of a given record type, which satisfied the given condition from the given table
 java.lang.Object DbManager.selectMin(java.lang.String type, java.lang.String field, DbCondition condition)
          Select the min value for a given fieldm of a given record type, which satisfied the given condition
 java.lang.Object DbManager.selectMin(java.lang.String type, java.lang.String field, DbCondition condition, java.lang.String table)
          Select the min value for a given fieldm of a given record type, which satisfied the given condition from the given table
 java.util.List CanyamoDataSource.select(DbCondition condition, java.lang.String orderBy, int pos, int size, java.lang.String table)
          Select all records which satisfied the given Condition