Uses of Class
com.irisel.oms.sql.Query

Packages that use Query
com.irisel.oms.dbh   
com.irisel.oms.ejb.browser   
com.irisel.oms.ejb.interfaces   
com.irisel.oms.guiom.interfaces   
com.irisel.oms.olapi   
com.irisel.oms.olapi.internal   
com.irisel.oms.sql   
 

Uses of Query in com.irisel.oms.dbh
 

Methods in com.irisel.oms.dbh with parameters of type Query
 boolean Dbh.execute(Query q)
          Executes the given query over existing db connection.
 boolean DBHandler.execute(Query q)
           
 java.lang.Object Dbh.executeQuery(Query q, boolean valuesFormatted, ResultsHandler processor)
           
 java.lang.Object DBHandler.executeQuery(Query q, boolean formattedValues, ResultsHandler processor)
           
 java.lang.Object Dbh.executeQuery(Query q, ResultsHandler p)
          Executes the given query over existing db connection.
 java.lang.Object DBHandler.executeQuery(Query q, ResultsHandler processor)
           
 int Dbh.executeUpdate(Query q)
           
 int DBHandler.executeUpdate(Query q)
           
 

Uses of Query in com.irisel.oms.ejb.browser
 

Methods in com.irisel.oms.ejb.browser with parameters of type Query
 boolean OMBrowserBean.execute(Query q)
          Business method
 int OMBrowserBean.executeUpdate(Query q)
          Business method
 

Uses of Query in com.irisel.oms.ejb.interfaces
 

Methods in com.irisel.oms.ejb.interfaces with parameters of type Query
 boolean OMBrowserEJB.execute(Query q)
          Business method
 int OMBrowserEJB.executeUpdate(Query q)
          Business method
 

Uses of Query in com.irisel.oms.guiom.interfaces
 

Methods in com.irisel.oms.guiom.interfaces with parameters of type Query
 boolean Browser.execute(Query q)
           
 

Uses of Query in com.irisel.oms.olapi
 

Methods in com.irisel.oms.olapi with parameters of type Query
 boolean SSBrowser.execute(Query q)
           
 int SSBrowser.executeUpdate(Query q)
           
 

Uses of Query in com.irisel.oms.olapi.internal
 

Methods in com.irisel.oms.olapi.internal with parameters of type Query
 boolean OMSBrowser.execute(Query q)
           
 boolean Browser.execute(Query q)
          Deprecated.  
 int OMSBrowser.executeUpdate(Query q)
           
 int Browser.executeUpdate(Query q)
          Deprecated.  
 

Uses of Query in com.irisel.oms.sql
 

Subclasses of Query in com.irisel.oms.sql
 class AlterTableQuery
          This class is used to generate, store and analyze SQL statements.
 class CreateTableQuery
          This class is used to generate, store and analyze Create-Table SQL statements.
 class DeleteQuery
          This class is used to generate, store and analyze SQL statements.
 class DropTableQuery
          This class is used to generate, store and analyze SQL statements.
 class InsertQuery
          This class is used to generate, store and analyze SQL statements.
 class SelectQuery
          This class is used to generate, store and analyze SQL statements.
 class UpdateQuery
          This class is used to generate, store and analyze SQL statements.
 

Methods in com.irisel.oms.sql that return Query
 Query[] Query.getChilds()
          Returns array of 1st-level child Querys.
 Query[] Query.getChildsDeep()
          Returns array of child Querys (recursively).
 Query Filter.getQuery2()
          Returns the (query) right-hand value of this filter.
 

Methods in com.irisel.oms.sql with parameters of type Query
 void Filter.setQuery2(Query newQuery2)
          Sets the right-hand query for this filter.
 

Constructors in com.irisel.oms.sql with parameters of type Query
Filter(Field f1, int op, Query q2)
          Constructor for filters of the form: tableA.field1 IN ( select field1 from tableB where ...)