|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use org.objectweb.cjdbc.common.sql | |
org.objectweb.cjdbc.common.sql | SQL requests that are sent from the C-JDBC driver to the C-JDBC controller. |
org.objectweb.cjdbc.controller.backend | Database backend core. |
org.objectweb.cjdbc.controller.cache.metadata | MetadataCache caches ResultSet meta-information for improved memory usage and ResultSet serialization. |
org.objectweb.cjdbc.controller.cache.parsing | ParsingCache caches the request parsing meta-information so that a request is parsed only once if it is executed secveral times. |
org.objectweb.cjdbc.controller.cache.result | ResultCache is an implementation of the AbstractResultCache. |
org.objectweb.cjdbc.controller.cache.result.entries | Query cache entries implementations. |
org.objectweb.cjdbc.controller.cache.result.rules | Rules to apply to the parsed request for the cache. |
org.objectweb.cjdbc.controller.loadbalancer | All C-JDBC load balancers are subpackage of this one which provides the load balancer interface and the core backend thread. |
org.objectweb.cjdbc.controller.loadbalancer.paralleldb | ParallelDB load balancers to use with parallel databases. |
org.objectweb.cjdbc.controller.loadbalancer.raidb0 | RAIDb-0 load balancers. |
org.objectweb.cjdbc.controller.loadbalancer.raidb1 | RAIDb-1 (full replication) load balancers. |
org.objectweb.cjdbc.controller.loadbalancer.raidb2 | RAIDb-2 (partial replication) load balancers. |
org.objectweb.cjdbc.controller.loadbalancer.singledb | Load balancer for single backend systems. |
org.objectweb.cjdbc.controller.loadbalancer.tasks | BackendWorkerThread tasks for distributed query execution. |
org.objectweb.cjdbc.controller.monitoring | Abstract class to monitor C-JDBC request and sql implementation. |
org.objectweb.cjdbc.controller.recoverylog | Recovery Log core. |
org.objectweb.cjdbc.controller.requestmanager | Request Manager core including the request parsing cache. |
org.objectweb.cjdbc.controller.requestmanager.distributed | Distributed implementation of the request manager. |
org.objectweb.cjdbc.controller.scheduler | All C-JDBC schedulers are subpackage of this one which provides the scheduler interface in the AbstractScheduler class. |
org.objectweb.cjdbc.controller.scheduler.raidb0 | RAIDb-0 schedulers. |
org.objectweb.cjdbc.controller.scheduler.raidb1 | RAIDb-1 (full replication) schedulers. |
org.objectweb.cjdbc.controller.scheduler.raidb2 | RAIDb-2 (partial replication) schedulers. |
org.objectweb.cjdbc.controller.scheduler.schema | Database schema handling for schedulers. |
org.objectweb.cjdbc.controller.scheduler.singledb | Schedulers for single backend system. |
org.objectweb.cjdbc.controller.virtualdatabase | Virtual database core code including connection handling. |
org.objectweb.cjdbc.controller.virtualdatabase.protocol | Differemt group messages for the distributed version of the virtual database. |
org.objectweb.cjdbc.driver | C-JDBC driver core. |
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.common.sql | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.backend | |
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.cache.metadata | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.cache.parsing | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.cache.result | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
UpdateRequest
An UpdateRequest is an SQL request with the following syntax:
UPDATE table-name SET (column-name=expression[,column-name=expression]*) WHERE search-condition
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.cache.result.entries | |
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.cache.result.rules | |
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.loadbalancer | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.loadbalancer.paralleldb | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.loadbalancer.raidb0 | |
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.loadbalancer.raidb1 | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.loadbalancer.raidb2 | |
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.loadbalancer.singledb | |
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.loadbalancer.tasks | |
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.monitoring | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.recoverylog | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.requestmanager | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.requestmanager.distributed | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.scheduler | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.scheduler.raidb0 | |
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.scheduler.raidb1 | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.scheduler.raidb2 | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.scheduler.schema | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.scheduler.singledb | |
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.virtualdatabase | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.controller.virtualdatabase.protocol | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.common.sql used by org.objectweb.cjdbc.driver | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL request.
|
|
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read requests
that are sent from the driver to the controller. |
|
SelectRequest
A SelectRequest is an SQL request of the following syntax:
SELECT [ALL|DISTINCT] select-item[,select-item]*
FROM table-specification[,table-specification]*
[WHERE search-condition]
[GROUP BY grouping-column[,grouping-column]]
[HAVING search-condition]
[ORDER BY sort-specification[,sort-specification]]
[LIMIT ignored]
Note that table-specification in the FROM clause can be a
sub-select. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |