Package | Description |
---|---|
com.healthmarketscience.jackcess.impl.query | |
com.healthmarketscience.jackcess.query |
Modifier and Type | Class and Description |
---|---|
class |
AppendQueryImpl
Concrete Query subclass which represents an append query, e.g.:
INSERT INTO <table> VALUES (<values>) |
class |
BaseSelectQueryImpl
Base class for queries which represent some form of SELECT statement.
|
class |
CrossTabQueryImpl
Concrete Query subclass which represents a crosstab/pivot query, e.g.:
TRANSFORM <expr> SELECT <query> PIVOT <expr> |
class |
DeleteQueryImpl
Concrete Query subclass which represents a delete query, e.g.:
DELETE * FROM <table> WHERE <expression> |
class |
MakeTableQueryImpl
Concrete Query subclass which represents an table creation query, e.g.:
SELECT <query> INTO <newTable> |
class |
SelectQueryImpl
Concrete Query subclass which represents a select query, e.g.:
SELECT <columns> FROM <tables> WHERE <expression> |
Modifier and Type | Interface and Description |
---|---|
interface |
AppendQuery
Query interface which represents an append query, e.g.:
INSERT INTO <table> VALUES (<values>) |
interface |
CrossTabQuery
Query interface which represents a crosstab/pivot query, e.g.:
TRANSFORM <expr> SELECT <query> PIVOT <expr> |
interface |
DeleteQuery
Query interface which represents a delete query, e.g.:
DELETE * FROM <table> WHERE <expression> |
interface |
MakeTableQuery
Query interface which represents an table creation query, e.g.:
SELECT <query> INTO <newTable> |
interface |
SelectQuery
Query interface which represents a select query, e.g.:
SELECT <columns> FROM <tables> WHERE <expression> |
Copyright © 2005–2024 OpenHMS. All rights reserved.