-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-sf-ucanaccess-fork: Move and expand sql constants
- Loading branch information
Showing
12 changed files
with
83 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/net/ucanaccess/jdbc/UcanaccessDatabaseMetadata.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/net/ucanaccess/jdbc/UcanaccessResultSetMetaData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
package net.ucanaccess.type; | ||
|
||
/** | ||
* Constants for SQL reserved words and recurring tokens. | ||
* | ||
* @author Markus Spann | ||
* @since v5.1.0 | ||
*/ | ||
public final class SqlConstants { | ||
|
||
public static final String ALTER = "ALTER"; | ||
public static final String AND = "AND"; | ||
public static final String ASC_OR_DESC = "ASC_OR_DESC"; | ||
public static final String COLUMN_NAME = "COLUMN_NAME"; | ||
public static final String COLUMN_SIZE = "COLUMN_SIZE"; | ||
public static final String COUNT_STAR = "COUNT(*)"; | ||
public static final String CREATE = "CREATE"; | ||
public static final String DATA_TYPE = "DATA_TYPE"; | ||
public static final String DECIMAL_DIGITS = "DECIMAL_DIGITS"; | ||
public static final String DELETE = "DELETE"; | ||
public static final String DISTINCT = "DISTINCT"; | ||
public static final String DROP = "DROP"; | ||
public static final String ESCAPED_COLUMN_NAME = "ESCAPED_COLUMN_NAME"; | ||
public static final String ESCAPED_TABLE_NAME = "ESCAPED_TABLE_NAME"; | ||
public static final String EXISTS = "EXISTS"; | ||
public static final String FKCOLUMN_NAME = "FKCOLUMN_NAME"; | ||
public static final String FK_NAME = "FK_NAME"; | ||
public static final String FROM = "FROM"; | ||
public static final String GROUP_BY = "GROUP BY"; | ||
public static final String HAVING = "HAVING"; | ||
public static final String IF_NOT_EXISTS = "IF NOT EXISTS"; | ||
public static final String INDEX_NAME = "INDEX_NAME"; | ||
public static final String INSERT = "INSERT"; | ||
public static final String INSERT_INTO = "INSERT INTO"; | ||
public static final String INTEGER = "INTEGER"; | ||
public static final String INTO = "INTO"; | ||
public static final String IS_AUTOINCREMENT = "IS_AUTOINCREMENT"; | ||
public static final String IS_CURRENCY = "IS_CURRENCY"; | ||
public static final String IS_NOT_NULL = "IS NOT NULL"; | ||
public static final String IS_NULL = "IS NULL"; | ||
public static final String LIKE = "LIKE"; | ||
public static final String LONGVARCHAR = "LONGVARCHAR"; | ||
public static final String NON_UNIQUE = "NON_UNIQUE"; | ||
public static final String ON = "ON"; | ||
public static final String OR = "OR"; | ||
public static final String ORDER_BY = "ORDER BY"; | ||
public static final String ORDINAL_POSITION = "ORDINAL_POSITION"; | ||
public static final String ORIGINAL_TYPE = "ORIGINAL_TYPE"; | ||
public static final String PIVOT = "PIVOT"; | ||
public static final String PKCOLUMN_NAME = "PKCOLUMN_NAME"; | ||
public static final String PKTABLE_NAME = "PKTABLE_NAME"; | ||
public static final String PUBLIC = "PUBLIC"; | ||
public static final String SELECT = "SELECT"; | ||
public static final String SELECT_COLUMN_ESCAPED = "SELECT_COLUMN_ESCAPED"; | ||
public static final String SET = "SET"; | ||
public static final String SMALLINT = "SMALLINT"; | ||
public static final String SYSTEM_SUBQUERY = "SYSTEM_SUBQUERY"; | ||
public static final String TABLE = "TABLE"; | ||
public static final String TABLE_ID = "TABLE_ID"; | ||
public static final String TABLE_NAME = "TABLE_NAME"; | ||
public static final String TRUNCATE = "TRUNCATE"; | ||
public static final String UNION = "UNION"; | ||
public static final String UNION_ALL = "UNION ALL"; | ||
public static final String UPDATE = "UPDATE"; | ||
public static final String VALUES = "VALUES"; | ||
public static final String VARCHAR = "VARCHAR"; | ||
public static final String WHERE = "WHERE"; | ||
public static final String WHERE_EXISTS = "WHERE EXISTS"; | ||
|
||
private SqlConstants() { | ||
} | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters