Package | Description |
---|---|
com.healthmarketscience.jackcess | |
com.healthmarketscience.jackcess.impl | |
com.healthmarketscience.jackcess.impl.query | |
com.healthmarketscience.jackcess.query |
Modifier and Type | Method and Description |
---|---|
List<Query> |
Database.getQueries()
Finds all the queries in the database.
|
Modifier and Type | Method and Description |
---|---|
List<Query> |
DatabaseImpl.getQueries() |
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 |
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> |
Modifier and Type | Interface and Description |
---|---|
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> |
Copyright © 2005–2024 OpenHMS. All rights reserved.