GigaSpaces XAP 9.7.2 API

Uses of Class
com.j_spaces.core.client.SQLQuery

Packages that use SQLQuery
com.gigaspaces.datasource Provides GigaSpaces DataSource implementation. 
com.j_spaces.core.client Provides GigaSpaces client interface services 
com.j_spaces.core.client.view GigaSpace client view files. 
org.openspaces.core.config Support classes for Spring namespace based configuration of OpenSpaces core. 
org.openspaces.core.space.cache A package allowing for simpler creation of Local Cache and Local View (expose an IJSpace) based on an actual IJSpace instance (usually created using the core.space package). 
org.openspaces.persistency.hibernate An implementation of GigaSpaces external data source using Hibernate. 
org.openspaces.persistency.hibernate.iterator A set of implementations of DataIterator using Hibernate. 
org.openspaces.persistency.patterns Set of patterns that can be used to wrap different external data sources. 
 

Uses of SQLQuery in com.gigaspaces.datasource
 

Methods in com.gigaspaces.datasource with parameters of type SQLQuery
 DataIterator<T> SQLDataProvider.iterator(SQLQuery<T> query)
          Deprecated.  Create an iterator over all objects that match the given SQLQuery.
 

Uses of SQLQuery in com.j_spaces.core.client
 

Subclasses of SQLQuery in com.j_spaces.core.client
 class ContinousQuery<T>
          Deprecated. Since 8.0 - This class has been deprecated and should not be used, use View or SQLQuery instead.
 

Methods in com.j_spaces.core.client that return SQLQuery
 SQLQuery<T> SQLQuery.setParameter(int index, Object value)
          Set the query parameter value.
 SQLQuery<T> SQLQuery.setProjections(String... properties)
          Sets projection properties which specifies that a result for an operation using this query should contain data for the specified projection properties.
 

Uses of SQLQuery in com.j_spaces.core.client.view
 

Subclasses of SQLQuery in com.j_spaces.core.client.view
 class View<T>
          Deprecated. Since 8.0.5 - Use SQLQuery Instead.
 

Uses of SQLQuery in org.openspaces.core.config
 

Methods in org.openspaces.core.config that return types with arguments of type SQLQuery
 Class<SQLQuery> SQLQueryFactoryBean.getObjectType()
           
 

Uses of SQLQuery in org.openspaces.core.space.cache
 

Methods in org.openspaces.core.space.cache with parameters of type SQLQuery
 LocalViewSpaceConfigurer LocalViewSpaceConfigurer.addViewQuery(SQLQuery query)
          Adds a query to the view's criteria.
 

Uses of SQLQuery in org.openspaces.persistency.hibernate
 

Methods in org.openspaces.persistency.hibernate with parameters of type SQLQuery
 DataIterator StatelessHibernateExternalDataSource.iterator(SQLQuery sqlQuery)
          Deprecated. Returns a StatelessListQueryDataIterator for the given query.
 DataIterator DefaultHibernateExternalDataSource.iterator(SQLQuery sqlQuery)
          Deprecated. Returns a DefaultListQueryDataIterator for the given sql query.
 

Uses of SQLQuery in org.openspaces.persistency.hibernate.iterator
 

Fields in org.openspaces.persistency.hibernate.iterator declared as SQLQuery
protected  SQLQuery AbstractChunkDataIterator.sqlQuery
           
protected  SQLQuery AbstractScrollableDataIterator.sqlQuery
           
protected  SQLQuery<?> DefaultListQueryDataIterator.sqlQuery
           
protected  SQLQuery<?> StatelessListQueryDataIterator.sqlQuery
           
 

Methods in org.openspaces.persistency.hibernate.iterator with parameters of type SQLQuery
protected abstract  DataIterator AbstractChunkDataIterator.createIteratorBySQLQuery(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int from, int size)
           
protected  DataIterator StatelessChunkListDataIterator.createIteratorBySQLQuery(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int from, int size)
           
protected  DataIterator DefaultChunkScrollableDataIterator.createIteratorBySQLQuery(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int from, int size)
           
protected  DataIterator StatelessChunkScrollableDataIterator.createIteratorBySQLQuery(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int from, int size)
           
protected  DataIterator DefaultChunkListDataIterator.createIteratorBySQLQuery(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int from, int size)
           
static org.hibernate.Query HibernateIteratorUtils.createQueryFromSQLQuery(SQLQuery<?> sqlQuery, org.hibernate.Session session)
           
static org.hibernate.Query HibernateIteratorUtils.createQueryFromSQLQuery(SQLQuery<?> sqlQuery, org.hibernate.StatelessSession session)
           
 

Constructors in org.openspaces.persistency.hibernate.iterator with parameters of type SQLQuery
AbstractChunkDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int chunkSize)
          Constructs a scrollable iterator over the given GigaSpaces SQLQuery.
AbstractScrollableDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById)
          Constructs a scrollable iterator over the given GigaSpaces SQLQuery.
AbstractScrollableDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int from, int size)
          Constructs a scrollable iterator over the given GigaSpaces SQLQuery.
DefaultChunkListDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int chunkSize)
          Constructs a list iterator over the given GigaSpaces SQLQuery.
DefaultChunkScrollableDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int chunkSize)
          Constructs a scrollable iterator over the given GigaSpaces SQLQuery.
DefaultListQueryDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory)
           
DefaultListQueryDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int from, int size)
           
DefaultScrollableDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById)
          Constructs a scrollable iterator over the given GigaSpaces SQLQuery.
DefaultScrollableDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int from, int size)
          Constructs a scrollable iterator over the given GigaSpaces SQLQuery.
StatelessChunkListDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int chunkSize)
          Constructs a list iterator over the given GigaSpaces SQLQuery.
StatelessChunkScrollableDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int chunkSize)
          Constructs a scrollable iterator over the given GigaSpaces SQLQuery.
StatelessListQueryDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory)
           
StatelessListQueryDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int from, int size)
           
StatelessScrollableDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById)
          Constructs a scrollable iterator over the given GigaSpaces SQLQuery.
StatelessScrollableDataIterator(SQLQuery sqlQuery, org.hibernate.SessionFactory sessionFactory, int fetchSize, boolean performOrderById, int from, int size)
          Constructs a scrollable iterator over the given GigaSpaces SQLQuery.
 

Uses of SQLQuery in org.openspaces.persistency.patterns
 

Methods in org.openspaces.persistency.patterns with parameters of type SQLQuery
 DataIterator SQLDataProviderExceptionHandler.iterator(SQLQuery sqlQuery)
          Deprecated.  
 DataIterator SQLDataProviderSplitter.iterator(SQLQuery sqlQuery)
          Deprecated.  
 


GigaSpaces XAP 9.7.2 API

Copyright © GigaSpaces.