From d87a15cc0076071bc4501bbeece802e1b8616585 Mon Sep 17 00:00:00 2001 From: Warren Levy Date: Thu, 29 Jun 2000 23:20:33 +0000 Subject: * 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). --- java/sql/Driver.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'java/sql/Driver.java') diff --git a/java/sql/Driver.java b/java/sql/Driver.java index 18e817a93..0ae0da7fd 100644 --- a/java/sql/Driver.java +++ b/java/sql/Driver.java @@ -1,5 +1,5 @@ /* Driver.java -- A JDBC driver - Copyright (C) 1999 Free Software Foundation, Inc. + Copyright (C) 1999, 2000 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -52,7 +52,7 @@ public abstract interface Driver * @return The major version number of the driver. */ public abstract int -getMajorVersionNumber(); +getMajorVersion(); /*************************************************************************/ -- cgit v1.2.1