Uses of Interface
org.objectweb.medor.datasource.api.DataStore

Packages that use DataStore
org.objectweb.medor.datasource.api   
org.objectweb.medor.datasource.lib   
org.objectweb.medor.datasource.rdb.api   
org.objectweb.medor.optim.rdb   
org.objectweb.medor.query.api   
org.objectweb.medor.query.lib   
org.objectweb.medor.query.rdb.lib   
 

Uses of DataStore in org.objectweb.medor.datasource.api
 

Methods in org.objectweb.medor.datasource.api with parameters of type DataStore
 Wrapper WrapperFactory.getWrapper(DataStore dl)
           
 boolean DataStore.isSameAs(DataStore ds)
          Checks whether the current DataStore object represents the same data store as another DataStore object.
 

Uses of DataStore in org.objectweb.medor.datasource.lib
 

Classes in org.objectweb.medor.datasource.lib that implement DataStore
 class BasicDataStore
           
 class ConnectionFactoryDataStore
          This implementation of the DataStore interface could be used in all cases where a data store could be identified by a connection factory.
 

Methods in org.objectweb.medor.datasource.lib with parameters of type DataStore
 Wrapper MedorWrapperFactory.getWrapper(DataStore dl)
           
 boolean ConnectionFactoryDataStore.isSameAs(DataStore ds)
          Two ConnectionFactoryDataStore with the same connection factory are equals.
 boolean BasicDataStore.isSameAs(DataStore ds)
          A simple example of an implementation of this method will tests equality between DataStore name only.
 

Uses of DataStore in org.objectweb.medor.datasource.rdb.api
 

Subinterfaces of DataStore in org.objectweb.medor.datasource.rdb.api
 interface RdbDataStore
          This interface specialized the DataStore for relational databases.
 

Uses of DataStore in org.objectweb.medor.optim.rdb
 

Fields in org.objectweb.medor.optim.rdb declared as DataStore
 DataStore GroupSameDBRule.RdbQuery.ds
           
 

Uses of DataStore in org.objectweb.medor.query.api
 

Methods in org.objectweb.medor.query.api that return DataStore
 DataStore QueryLeaf.getDataStore()
           
 

Uses of DataStore in org.objectweb.medor.query.lib
 

Fields in org.objectweb.medor.query.lib declared as DataStore
protected  DataStore MedorTCQueryLeaf.ds
           
 

Methods in org.objectweb.medor.query.lib that return DataStore
 DataStore MedorTCQueryLeaf.getDataStore()
           
 

Uses of DataStore in org.objectweb.medor.query.rdb.lib
 

Fields in org.objectweb.medor.query.rdb.lib declared as DataStore
protected  DataStore BasicRdbQueryLeaf.ds
           
protected  DataStore AggregateRdbQueryNode.ds
           
 

Methods in org.objectweb.medor.query.rdb.lib that return DataStore
 DataStore BasicRdbQueryLeaf.getDataStore()
           
 DataStore AggregateRdbQueryNode.getDataStore()
           
 

Methods in org.objectweb.medor.query.rdb.lib with parameters of type DataStore
 void BasicRdbQueryLeaf.setDataStore(DataStore ds)
           
 

Constructors in org.objectweb.medor.query.rdb.lib with parameters of type DataStore
BasicRdbStringQueryLeaf(DataStore ds, java.lang.String query, java.lang.String nodeName)
          Constructs a BasicRdbStringQueryLeaf from an SQL string.
BasicRdbQueryLeaf(java.lang.String _name, DataStore ds)
           
BasicRdbQueryLeaf(java.lang.String _name, DataStore ds, java.lang.String query)
           
BasicRdbExpQueryLeaf(DataStore ds, java.lang.String nodeName)
           
BasicRdbExpQueryLeaf(DataStore ds, QualifiedTable[] from, java.lang.String nodeName)
          Constructs a BasicRdbExpQueryLeaf from an Expression and a set of QualifiedTables.
AggregateRdbQueryNode(QueryTreeField[] groupedFields, java.lang.String groupedFieldName, QueryTreeField[] groupByFields, BasicRdbExpQueryLeaf subQL, DataStore ds, java.lang.String nodeName)
          Constructs a RDB QueryNode for an aggregation.