| AppendQueryImpl |
Concrete Query subclass which represents an append query, e.g.:
INSERT INTO <table> VALUES (<values>)
|
| BaseSelectQueryImpl |
Base class for queries which represent some form of SELECT statement.
|
| CrossTabQueryImpl |
Concrete Query subclass which represents a crosstab/pivot query, e.g.:
TRANSFORM <expr> SELECT <query> PIVOT <expr>
|
| DataDefinitionQueryImpl |
Concrete Query subclass which represents a DDL query.
|
| DeleteQueryImpl |
Concrete Query subclass which represents a delete query, e.g.:
DELETE * FROM <table> WHERE <expression>
|
| MakeTableQueryImpl |
Concrete Query subclass which represents an table creation query, e.g.:
SELECT <query> INTO <newTable>
|
| PassthroughQueryImpl |
Concrete Query subclass which represents a query which will be executed via
ODBC.
|
| QueryFormat |
Constants used by the query data parsing.
|
| QueryImpl |
Base class for classes which encapsulate information about an Access query.
|
| QueryImpl.Row |
Struct containing the information from a single row of the system query
table.
|
| SelectQueryImpl |
Concrete Query subclass which represents a select query, e.g.:
SELECT <columns> FROM <tables> WHERE <expression>
|
| UnionQueryImpl |
Concrete Query subclass which represents a UNION query, e.g.:
SELECT <query1> UNION SELECT <query2>
|
| UpdateQueryImpl |
Concrete Query subclass which represents a row update query, e.g.:
UPDATE <table> SET <newValues>
|