List:Internals« Previous MessageNext Message »
From:mmatthews Date:November 7 2005 2:34am
Subject:Connector/J commit: r4523 - branches/branch_3_1/connector-j/src/com/mysql/jdbc
View as plain text  
Modified:
   branches/branch_3_1/connector-j/src/com/mysql/jdbc/DatabaseMetaData.java
Log:
Always return true for storesUpperCaseQuotedIdentifiers().

Modified: branches/branch_3_1/connector-j/src/com/mysql/jdbc/DatabaseMetaData.java
===================================================================
--- branches/branch_3_1/connector-j/src/com/mysql/jdbc/DatabaseMetaData.java	2005-11-07
01:19:27 UTC (rev 4522)
+++ branches/branch_3_1/connector-j/src/com/mysql/jdbc/DatabaseMetaData.java	2005-11-07
01:34:27 UTC (rev 4523)
@@ -6285,7 +6285,7 @@
 	 *             DOCUMENT ME!
 	 */
 	public boolean storesLowerCaseIdentifiers() throws SQLException {
-		return !this.conn.lowerCaseTableNames();
+		return !this.conn.lowerCaseTableNames(); // should be false on Unix
 	}
 
 	/**
@@ -6297,7 +6297,7 @@
 	 *             DOCUMENT ME!
 	 */
 	public boolean storesLowerCaseQuotedIdentifiers() throws SQLException {
-		return !this.conn.lowerCaseTableNames();
+		return !this.conn.lowerCaseTableNames(); // should be false on Unix
 	}
 
 	/**
@@ -6309,7 +6309,7 @@
 	 *             DOCUMENT ME!
 	 */
 	public boolean storesMixedCaseIdentifiers() throws SQLException {
-		return !this.conn.lowerCaseTableNames();
+		return !this.conn.lowerCaseTableNames(); // should be true on Unix
 	}
 
 	/**
@@ -6321,7 +6321,7 @@
 	 *             DOCUMENT ME!
 	 */
 	public boolean storesMixedCaseQuotedIdentifiers() throws SQLException {
-		return !this.conn.lowerCaseTableNames();
+		return !this.conn.lowerCaseTableNames();  // should be true on Unix
 	}
 
 	/**
@@ -6333,7 +6333,7 @@
 	 *             DOCUMENT ME!
 	 */
 	public boolean storesUpperCaseIdentifiers() throws SQLException {
-		return !this.conn.lowerCaseTableNames();
+		return !this.conn.lowerCaseTableNames(); // should be false, always
 	}
 
 	/**
@@ -6345,7 +6345,7 @@
 	 *             DOCUMENT ME!
 	 */
 	public boolean storesUpperCaseQuotedIdentifiers() throws SQLException {
-		return !this.conn.lowerCaseTableNames();
+		return !this.conn.lowerCaseTableNames(); // should be false, always
 	}
 
 	/**

Thread
Connector/J commit: r4523 - branches/branch_3_1/connector-j/src/com/mysql/jdbcmmatthews7 Nov