summaryrefslogtreecommitdiff
path: root/java/sql/Connection.java
diff options
context:
space:
mode:
authorWarren Levy <warrenl@redhat.com>2000-06-29 23:20:33 +0000
committerWarren Levy <warrenl@redhat.com>2000-06-29 23:20:33 +0000
commitd87a15cc0076071bc4501bbeece802e1b8616585 (patch)
treea91f4394b934a32b48fb1683af562852cc2a5223 /java/sql/Connection.java
parenta40aa46838c98db56191e72ceef41d471ed4ed0d (diff)
downloadclasspath-d87a15cc0076071bc4501bbeece802e1b8616585.tar.gz
* java/math/BigDecimal.java (add): Reimplemented.
(subtract): Corrected method name from 'substract'. Reimplemented. * java/sql/Connection.java (TRANSACTION_SERIALIZABLE): Corrected spelling to match JDK spec. * java/sql/DatabaseMetaData.java (getIdentifierQuoteString): Corrected method name from 'getIdentiferQuoteString'. (getTimeDateFunctions): Corrected name to match the spec. (supportsCatalogsInPrivilegeDefinitions): Ditto. (getMaxUserNameLength): Ditto. (getTables): Added String types[] parameter to match the spec. * java/sql/Driver.java (getMajorVersion): Corrected method name. * java/sql/PreparedStatement.java: Class extends Statement. (setBigDecimal): New method. (setAsciiStream): Added int length parameter. (setUnicodeStream): Ditto. (setBinaryStream): Ditto. (setCharacterStream): Ditto. (execute): New method. (executeQuery): New method. (executeUpdate): New method. Mods to match the JDK spec (and to fix BigDecimal bugs).
Diffstat (limited to 'java/sql/Connection.java')
-rw-r--r--java/sql/Connection.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/sql/Connection.java b/java/sql/Connection.java
index 0efa4f4aa..993c1f66f 100644
--- a/java/sql/Connection.java
+++ b/java/sql/Connection.java
@@ -1,5 +1,5 @@
/* Connection.java -- Manage a database connection.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -74,7 +74,7 @@ public static final int TRANSACTION_REPEATABLE_READ = 4;
* transactions will not affect the result set returned during subsequent
* executions of the same WHERE clause in this transaction.
*/
-public static final int TRANSACTION_SERIALIZEABLE = 8;
+public static final int TRANSACTION_SERIALIZABLE = 8;
/*************************************************************************/