|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use org.objectweb.cjdbc.sql | |
org.objectweb.cjdbc.controller.backend | Database backend core. |
org.objectweb.cjdbc.controller.cache | Query cache implementations. |
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.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.recoverylog | Recovery Log core. |
org.objectweb.cjdbc.controller.requestmanager | Request Manager core including the request parsing cache. |
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 | |
org.objectweb.cjdbc.driver | C-JDBC driver core. |
org.objectweb.cjdbc.sql | SQL requests that are sent from the C-JDBC driver to the C-JDBC controller. |
Classes in org.objectweb.cjdbc.sql used by org.objectweb.cjdbc.controller.backend | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL
request. |
Classes in org.objectweb.cjdbc.sql used by org.objectweb.cjdbc.controller.cache | |
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]
Everything after the end of the WHERE clause is ignored. |
Classes in org.objectweb.cjdbc.sql used by org.objectweb.cjdbc.controller.loadbalancer | |
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]
Everything after the end of the WHERE clause is ignored. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following
syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.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]
Everything after the end of the WHERE clause is ignored. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following
syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.sql used by org.objectweb.cjdbc.controller.loadbalancer.raidb1 | |
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]
Everything after the end of the WHERE clause is ignored. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following
syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.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]
Everything after the end of the WHERE clause is ignored. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following
syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.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]
Everything after the end of the WHERE clause is ignored. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following
syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.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]
Everything after the end of the WHERE clause is ignored. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following
syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.sql used by org.objectweb.cjdbc.controller.recoverylog | |
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.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]
Everything after the end of the WHERE clause is ignored. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following
syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.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]
Everything after the end of the WHERE clause is ignored. |
Classes in org.objectweb.cjdbc.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]
Everything after the end of the WHERE clause is ignored. |
Classes in org.objectweb.cjdbc.sql used by org.objectweb.cjdbc.controller.scheduler.raidb1 | |
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]
Everything after the end of the WHERE clause is ignored. |
Classes in org.objectweb.cjdbc.sql used by org.objectweb.cjdbc.controller.scheduler.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]
Everything after the end of the WHERE clause is ignored. |
Classes in org.objectweb.cjdbc.sql used by org.objectweb.cjdbc.controller.scheduler.schema | |
AbstractRequest
An AbstractRequest defines the skeleton of an SQL
request. |
Classes in org.objectweb.cjdbc.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]
Everything after the end of the WHERE clause is ignored. |
Classes in org.objectweb.cjdbc.sql used by org.objectweb.cjdbc.controller.virtualdatabase | |
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]
Everything after the end of the WHERE clause is ignored. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following
syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.sql used by org.objectweb.cjdbc.controller.virtualdatabase.protocol | |
AbstractWriteRequest
An AbstractWriteRequest defines the skeleton of read
requests that are sent from the driver to the controller. |
Classes in org.objectweb.cjdbc.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]
Everything after the end of the WHERE clause is ignored. |
|
StoredProcedure
A StoredProcedure is a SQL request with the following
syntax:
{call <procedure-name>[<arg1>,<arg2>, ...]}
|
Classes in org.objectweb.cjdbc.sql used by org.objectweb.cjdbc.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. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |