|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Query | |
|---|---|
| com.healthmarketscience.jackcess | |
| com.healthmarketscience.jackcess.impl | |
| com.healthmarketscience.jackcess.impl.query | |
| com.healthmarketscience.jackcess.query | |
| Uses of Query in com.healthmarketscience.jackcess |
|---|
| Methods in com.healthmarketscience.jackcess that return types with arguments of type Query | |
|---|---|
List<Query> |
Database.getQueries()
Finds all the queries in the database. |
| Uses of Query in com.healthmarketscience.jackcess.impl |
|---|
| Methods in com.healthmarketscience.jackcess.impl that return types with arguments of type Query | |
|---|---|
List<Query> |
DatabaseImpl.getQueries()
|
| Uses of Query in com.healthmarketscience.jackcess.impl.query |
|---|
| Classes in com.healthmarketscience.jackcess.impl.query that implement 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 |
QueryImpl
Base class for classes which encapsulate information about an Access query. |
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> |
| Uses of Query in com.healthmarketscience.jackcess.query |
|---|
| Subinterfaces of Query in com.healthmarketscience.jackcess.query | |
|---|---|
interface |
AppendQuery
Query interface which represents an append query, e.g.: INSERT INTO <table> VALUES (<values>) |
interface |
BaseSelectQuery
Base interface for queries which represent some form of SELECT statement. |
interface |
CrossTabQuery
Query interface which represents a crosstab/pivot query, e.g.: TRANSFORM <expr> SELECT <query> PIVOT <expr> |
interface |
DataDefinitionQuery
Query interface which represents a DDL query. |
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 |
PassthroughQuery
Query interface which represents a query which will be executed via ODBC. |
interface |
SelectQuery
Query interface which represents a select query, e.g.: SELECT <columns> FROM <tables> WHERE <expression> |
interface |
UnionQuery
Query interface which represents a UNION query, e.g.: SELECT <query1> UNION SELECT <query2> |
interface |
UpdateQuery
Query interface which represents a row update query, e.g.: UPDATE <table> SET <newValues> |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||