public final class QueryConstants extends Object
Modifier and Type | Field and Description |
---|---|
static String |
AND
'AND' keyword for conditions of SQL queries.
|
static char |
ASSIGN
Character to assign a value to a column in set clause of an SQL update query.
|
static String |
DELETE
'DELETE' keyword of a SQL delete query.
|
static char |
DOT
Character separating qualifier and column in a SQL query.
|
static String |
FOR
'FOR' keyword for constructing FOR UPDATE-clauses.
|
static String |
FROM
'FROM' keyword of a SQL query.
|
static String |
HOLDLOCK
'HOLDLOCK' keyword for constructing WITH (HOLDLOCK)-clauses.
|
static String |
INSERT
'INSERT' keyword of a SQL insert query.
|
static String |
INTO
'INTO' keyword of insert query.
|
static String |
IS
'IS' keyword for conditions of SQL queries.
|
static String |
JOIN
'JOIN' keyword for constructing joins of SQL queries.
|
static String |
LOCK
'LOCK' keyword for constructing WITH LOCK-clauses.
|
static char |
LPAREN
Left parenthesis character for SQL query.
|
static String |
NOT
'NOT' keyword for conditions of SQL queries.
|
static String |
NULL
'NULL' keyword for conditions of SQL queries.
|
static String |
ON
'ON' keyword for constructing joins of SQL queries.
|
static String |
OR
'OR' keyword for conditions of SQL queries.
|
static char |
PARAMETER
Character representing a parameter in a SQL query.
|
static char |
RPAREN
Right parenthesis character for SQL query.
|
static String |
SELECT
'SELECT' keyword of a SQL delete query.
|
static char |
SEPERATOR
Character to separate multiple assignments in set clause of an SQL update query.
|
static String |
SET
'SET' keyword of a SQL update query.
|
static char |
SPACE
Character to use for spaces in SQL query.
|
static char |
STAR
'*' for select query.
|
static String |
UPDATE
'UPDATE' keyword of a SQL update query.
|
static String |
VALUES
'VALUES' keyword of a SQL insert query.
|
static String |
WHERE
'WHERE' keyword of a SQL query.
|
static String |
WITH
'WITH' keyword for constructing WITH LOCK-clauses.
|
public static final String SELECT
public static final String DELETE
public static final String UPDATE
public static final String INSERT
public static final String VALUES
public static final String INTO
public static final char STAR
public static final String SET
public static final String FROM
public static final String WHERE
public static final String AND
public static final String OR
public static final String NOT
public static final String IS
public static final String NULL
public static final String JOIN
public static final String ON
public static final String FOR
public static final String WITH
public static final String LOCK
public static final String HOLDLOCK
public static final char SPACE
public static final char DOT
public static final char PARAMETER
public static final char LPAREN
public static final char RPAREN
public static final char ASSIGN
public static final char SEPERATOR
Copyright © 2018. All rights reserved.