|
|||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
See:
Description
Class Summary | |
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. |
CreateRequest | A CreateRequest is a SQL request of the following
syntax:
CREATE [TEMPORARY] TABLE table-name [(column-name column-type
[,column-name colum-type]* [,table-constraint-definition]*)]
|
DeleteRequest | An DeleteRequest is an SQL request with the following
syntax:
DELETE FROM table-name
WHERE search-condition
|
DropRequest | An DropRequest is an SQL request with the following
syntax:
DROP TABLE table-name
|
InsertRequest | An InsertRequest is an SQL request of the following
syntax:
INSERT INTO table-name [(column-name[,column-name]*)]
{VALUES (constant|null[,constant|null]*)}|{SELECT query}
VALUES |
ParsingGranularities | Defines SQL queries parsing granularities. |
RequestType | Defines static types values for request. |
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>, ...]}
|
UnknownRequest | An UnknownRequest is an SQL request that does not
match any SQL query known by this software. |
UpdateRequest | An UpdateRequest is an SQL request with the following
syntax:
UPDATE table-name SET (column-name=expression[,column-name=expression]*)
WHERE search-condition
|
Exception Summary | |
NotImplementedException | This exception is thrown for all non implemented features in the C-JDBC driver. |
SQL requests that are sent from the C-JDBC driver to the C-JDBC controller.
|
|||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |