Subversion Repository Public Repository

litesoft

Diff Revisions 24 vs 49 for /trunk/Java/core/Server/src/org/litesoft/sql/SQLProductSpecificAbstractHelper.java

Diff revisions: vs.
  @@ -1,3 +1,4 @@
1 + // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
1 2 package org.litesoft.sql;
2 3
3 4 import org.litesoft.bo.*;
  @@ -13,21 +14,21 @@
13 14 public abstract class SQLProductSpecificAbstractHelper extends SQL_OR_Helper
14 15 implements SQLProductSpecificHelper
15 16 {
16 - // boolean storesLowerCaseIdentifiers()
17 + // boolean storesLowerCaseIdentifiers()
17 18 // Retrieves whether this database treats mixed case unquoted SQL identifiers as case insensitive and stores them in lower case.
18 - // boolean storesLowerCaseQuotedIdentifiers()
19 + // boolean storesLowerCaseQuotedIdentifiers()
19 20 // Retrieves whether this database treats mixed case quoted SQL identifiers as case insensitive and stores them in lower case.
20 - // boolean storesMixedCaseIdentifiers()
21 + // boolean storesMixedCaseIdentifiers()
21 22 // Retrieves whether this database treats mixed case unquoted SQL identifiers as case insensitive and stores them in mixed case.
22 - // boolean storesMixedCaseQuotedIdentifiers()
23 + // boolean storesMixedCaseQuotedIdentifiers()
23 24 // Retrieves whether this database treats mixed case quoted SQL identifiers as case insensitive and stores them in mixed case.
24 - // boolean storesUpperCaseIdentifiers()
25 + // boolean storesUpperCaseIdentifiers()
25 26 // Retrieves whether this database treats mixed case unquoted SQL identifiers as case insensitive and stores them in upper case.
26 - // boolean storesUpperCaseQuotedIdentifiers()
27 + // boolean storesUpperCaseQuotedIdentifiers()
27 28 // Retrieves whether this database treats mixed case quoted SQL identifiers as case insensitive and stores them in upper case.
28 - // boolean supportsMixedCaseIdentifiers()
29 + // boolean supportsMixedCaseIdentifiers()
29 30 // Does the database treat mixed case unquoted SQL identifiers as case sensitive and as a result store them in mixed case? A JDBC CompliantTM driver will always return false.
30 - // boolean supportsMixedCaseQuotedIdentifiers()
31 + // boolean supportsMixedCaseQuotedIdentifiers()
31 32 // Does the database treat mixed case quoted SQL identifiers as case sensitive and as a result store them in mixed case? A JDBC CompliantTM driver will always return true.
32 33
33 34 protected CaseNormalizer mCaseNormalizer = LeaveCaseUnchanged.INSTANCE;