|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use QueryImpl | |
|---|---|
| com.healthmarketscience.jackcess.impl.query | |
| Uses of QueryImpl in com.healthmarketscience.jackcess.impl.query |
|---|
| Subclasses of QueryImpl in com.healthmarketscience.jackcess.impl.query | |
|---|---|
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 |
DataDefinitionQueryImpl
Concrete Query subclass which represents a DDL query. |
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 |
PassthroughQueryImpl
Concrete Query subclass which represents a query which will be executed via ODBC. |
class |
SelectQueryImpl
Concrete Query subclass which represents a select query, e.g.: SELECT <columns> FROM <tables> WHERE <expression> |
class |
UnionQueryImpl
Concrete Query subclass which represents a UNION query, e.g.: SELECT <query1> UNION SELECT <query2> |
class |
UpdateQueryImpl
Concrete Query subclass which represents a row update query, e.g.: UPDATE <table> SET <newValues> |
| Methods in com.healthmarketscience.jackcess.impl.query that return QueryImpl | |
|---|---|
static QueryImpl |
QueryImpl.create(int objectFlag,
String name,
List<QueryImpl.Row> rows,
int objectId)
Creates a concrete Query instance from the given query data. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||