Class Summary |
AppendQuery |
Concrete Query subclass which represents an append query, e.g.: INSERT INTO
<table>
VALUES (<values>) |
BaseSelectQuery |
Base class for queries which represent some form of SELECT statement. |
CrossTabQuery |
Concrete Query subclass which represents a crosstab/pivot query, e.g.: TRANSFORM <expr>
SELECT <query> PIVOT <expr> |
DataDefinitionQuery |
Concrete Query subclass which represents a DDL query. |
DeleteQuery |
Concrete Query subclass which represents a delete query, e.g.: DELETE * FROM
<table>
WHERE <expression> |
MakeTableQuery |
Concrete Query subclass which represents an table creation query, e.g.: SELECT <query>
INTO <newTable> |
PassthroughQuery |
Concrete Query subclass which represents a query which will be executed via ODBC. |
Query |
Base class for classes which encapsulate information about an Access query. |
Query.Row |
Struct containing the information from a single row of the system query table. |
QueryFormat |
Constants used by the query data parsing. |
SelectQuery |
Concrete Query subclass which represents a select query, e.g.: SELECT <columns> FROM
<tables> WHERE <expression> |
UnionQuery |
Concrete Query subclass which represents a UNION query, e.g.: SELECT <query1> UNION SELECT
<query2> |
UpdateQuery |
Concrete Query subclass which represents a row update query, e.g.: UPDATE
<table>
SET <newValues> |