summaryrefslogtreecommitdiff
path: root/java/sql/DatabaseMetaData.java
diff options
context:
space:
mode:
authorBrian Jones <cbj@gnu.org>2001-01-07 04:22:26 +0000
committerBrian Jones <cbj@gnu.org>2001-01-07 04:22:26 +0000
commitd036269e0e0c988696884d0395b66a55cb362325 (patch)
tree049483277636cc964c9be2075b15b301f563afde /java/sql/DatabaseMetaData.java
parent76cba0551ec51e98fb226728f6580887496ef47e (diff)
downloadclasspath-d036269e0e0c988696884d0395b66a55cb362325.tar.gz
* Release classpath-0.02
* doc/www.gnu.org/announce/20010106.mhtml: New file. * resource/japhar-0.09.patch.1: New file; patch for Japhar 0.09 for GNU Classpath 0.02 release. * NEWS: Added 0.02 release information. * configure.in: Update release number, add additional Makefile output files. * doc/Makefile.am: New target 'docs' can be used to generate formal postscript documentation. * doc/texinfo.tex: Updated to tetex 1.0.7 release. * doc/www.gnu.org/classpath.mhtml: Notice of license change and other small enhancements. * gnu/java/beans/Makefile.am: Removed ChangeLog from EXTRA_DIST * gnu/java/beans/editors/Makefile.am: Ditto. * gnu/java/beans/info/Makefile.am: Ditto. * gnu/java/io/Makefile.am: Ditto * gnu/java/io/decode/Makefile.am: Ditto. * gnu/java/io/encode/Makefile.am: Ditto. * gnu/java/lang/Makefile.am: Ditto. * gnu/java/lang/reflect/Makefile.am: Ditto. * gnu/java/net/content/text/Makefile.am: Ditto. * java/beans/Makefile.am: Ditto. * java/lang/reflect/Makefile.am: Ditto. * java/net/Makefile.am: Ditto. * java/util/Makefile.am: Ditto. * resource/Makefile.am: Add japhar-0.09.patch.1 to EXTRA_DIST * resource/java/security/Makefile.am: Rules to install security policy in $(libdir)/security. * java/beans/PropertyDescriptor.java: Fix comment. * java/io/PushbackReader.java: Fix comment. * java/io/ObjectStreamClass.java: Fix comment. * java/io/DataInputStream.java: Fix comment. * java/io/PipedInputStream.java: Fix comments. * java/io/PipedReader.java: Fix comments. * java/sql/DatabaseMetaData.java: Fix comments.
Diffstat (limited to 'java/sql/DatabaseMetaData.java')
-rw-r--r--java/sql/DatabaseMetaData.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/java/sql/DatabaseMetaData.java b/java/sql/DatabaseMetaData.java
index a643c81e9..92ed44e45 100644
--- a/java/sql/DatabaseMetaData.java
+++ b/java/sql/DatabaseMetaData.java
@@ -1,5 +1,5 @@
/* DatabaseMetaData.java -- Information about the database itself.
- Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -2109,7 +2109,7 @@ getTablePrivileges(String catalog, String schema, String table)
* <ol>
* <li>SCOPE - The scope of the results returned. This is one of the
* constants defined in this class (<code>bestRowTemporary</code>,
- * <code>bestRowTransaction</code>, or <code>bestRowSession</code).
+ * <code>bestRowTransaction</code>, or <code>bestRowSession</code>).
* <li>COLUMN_NAME - The name of the column.
* <li>DATA_TYPE - The SQL type of the column. This is one of the constants
* defined in <code>Types</code>.
@@ -2193,6 +2193,7 @@ getVersionColumns(String catalog, String schema, String table)
* <li>COLUMN_NAME - The name of the column.
* <li>KEY_SEQ - The sequence number of the column within the primary key.
* <li>PK_NAME - The name of the primary key, which may be <code>null</code>.
+ * </ol>
*
* @param catalog The catalog to retrieve information from, or the empty string
* to return entities not associated with a catalog, or <code>null</code>
@@ -2241,6 +2242,7 @@ getPrimaryKeys(String catalog, String schema, String table)
* constants defined in this table (<code>importedKeyInitiallyDeferred</code>,
* <code>importedKeyInitiallyImmediate</code>, or
* <code>importedKeyNotDeferrable</code>).
+ * </ol>
*
* @param catalog The catalog to retrieve information from, or the empty string
* to return entities not associated with a catalog, or <code>null</code>
@@ -2289,6 +2291,7 @@ getImportedKeys(String catalog, String schema, String table)
* constants defined in this table (<code>importedKeyInitiallyDeferred</code>,
* <code>importedKeyInitiallyImmediate</code>, or
* <code>importedKeyNotDeferrable</code>).
+ * </ol>
*
* @param catalog The catalog to retrieve information from, or the empty string
* to return entities not associated with a catalog, or <code>null</code>
@@ -2337,6 +2340,7 @@ getExportedKeys(String catalog, String schema, String table)
* constants defined in this table (<code>importedKeyInitiallyDeferred</code>,
* <code>importedKeyInitiallyImmediate</code>, or
* <code>importedKeyNotDeferrable</code>).
+ * </ol>
*
* @param primCatalog The catalog to retrieve information from, or the empty string
* to return entities not associated with a catalog, or <code>null</code>
@@ -2436,6 +2440,7 @@ getTypeInfo() throws SQLException;
* in the table if the index type is <code>tableIndexStatistic</code>.
* <li>FILTER_CONDITION - The filter condition for this index, which may be
* <code>null</code>.
+ * </ol>
*
* @param catalog The catalog to retrieve information from, or the empty string
* to return entities not associated with a catalog, or <code>null</code>