com.triactive.jdo.store.sql
Interface Sql92Constants


public interface Sql92Constants

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
See Also:
DatabaseAdapter

Field Summary
static int MAX_IDENTIFIER_LENGTH
          The maximum length of a SQL/92 identifier in characters.
static java.lang.String NONRESERVED_WORDS
          A string containing the list of SQL/92 non-reserved words, separated by commas.
static java.lang.String RESERVED_WORDS
          A string containing the list of SQL/92 reserved words, separated by commas.
 

Field Detail

MAX_IDENTIFIER_LENGTH

public static final int MAX_IDENTIFIER_LENGTH
The maximum length of a SQL/92 identifier in characters.

See Also:
Constant Field Values

RESERVED_WORDS

public static final java.lang.String RESERVED_WORDS
A string containing the list of SQL/92 reserved words, separated by commas.

See Also:
Constant Field Values

NONRESERVED_WORDS

public static final java.lang.String NONRESERVED_WORDS
A string containing the list of SQL/92 non-reserved words, separated by commas.

See Also:
Constant Field Values


Copyright © 2001-2007 The TJDO Project All Rights Reserved.