| com.triactive.jdo.store.SQL92Constants
SQL92Constants | public interface SQL92Constants (Code) | | Contains various constants from the SQL/92 standard.
SQL/92 Key Words
A key word is a word that has one or more meanings in the SQL
language itself.
Some key words are reserved words, meaning they cannot be used as
a regular identifier.
The remaining key words are non-reserved.
author: Mike Martin version: $Revision: 1.1 $ See Also: DatabaseAdapter |
Field Summary | |
final public static int | MAX_IDENTIFIER_LENGTH The maximum length of a SQL/92 identifier in characters. | final public static String | NONRESERVED_WORDS A string containing the list of SQL/92 non-reserved words,
separated by commas. | final public static String | RESERVED_WORDS A string containing the list of SQL/92 reserved words,
separated by commas. |
MAX_IDENTIFIER_LENGTH | final public static int MAX_IDENTIFIER_LENGTH(Code) | | The maximum length of a SQL/92 identifier in characters.
|
NONRESERVED_WORDS | final public static String NONRESERVED_WORDS(Code) | | A string containing the list of SQL/92 non-reserved words,
separated by commas.
|
RESERVED_WORDS | final public static String RESERVED_WORDS(Code) | | A string containing the list of SQL/92 reserved words,
separated by commas.
|
|
|