|
Elexis API documentationVersion 2.1.6 as of December 11 2011 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Query | |
---|---|
com.healthmarketscience.jackcess | |
com.healthmarketscience.jackcess.query |
Uses of Query in com.healthmarketscience.jackcess |
---|
Methods in com.healthmarketscience.jackcess that return types with arguments of type Query | |
---|---|
java.util.List<Query> |
Database.getQueries()
Finds all the queries in the database. |
Uses of Query in com.healthmarketscience.jackcess.query |
---|
Subclasses of Query in com.healthmarketscience.jackcess.query | |
---|---|
class |
AppendQuery
Concrete Query subclass which represents an append query, e.g.: INSERT INTO
<table>
VALUES (<values>) |
class |
BaseSelectQuery
Base class for queries which represent some form of SELECT statement. |
class |
CrossTabQuery
Concrete Query subclass which represents a crosstab/pivot query, e.g.: TRANSFORM <expr>
SELECT <query> PIVOT <expr> |
class |
DataDefinitionQuery
Concrete Query subclass which represents a DDL query. |
class |
DeleteQuery
Concrete Query subclass which represents a delete query, e.g.: DELETE * FROM
<table>
WHERE <expression> |
class |
MakeTableQuery
Concrete Query subclass which represents an table creation query, e.g.: SELECT <query>
INTO <newTable> |
class |
PassthroughQuery
Concrete Query subclass which represents a query which will be executed via ODBC. |
class |
SelectQuery
Concrete Query subclass which represents a select query, e.g.: SELECT <columns> FROM
<tables> WHERE <expression> |
class |
UnionQuery
Concrete Query subclass which represents a UNION query, e.g.: SELECT <query1> UNION SELECT
<query2> |
class |
UpdateQuery
Concrete Query subclass which represents a row update query, e.g.: UPDATE
<table>
SET <newValues> |
Methods in com.healthmarketscience.jackcess.query that return Query | |
---|---|
static Query |
Query.create(int objectFlag,
java.lang.String name,
java.util.List<Query.Row> rows,
int objectId)
Creates a concrete Query instance from the given query data. |
|
Elexis API documentationVersion 2.1.6 as of December 11 2011 | |||||||||
PREV NEXT | FRAMES NO FRAMES |