summaryrefslogtreecommitdiff
path: root/java/sql/Driver.java
diff options
context:
space:
mode:
authorDavid Gilbert <david.gilbert@object-refinery.com>2006-04-22 06:16:05 +0000
committerDavid Gilbert <david.gilbert@object-refinery.com>2006-04-22 06:16:05 +0000
commit49386b54ba94e937a085f9484371a383d8905f0a (patch)
tree343350801201fcbc169f86b0b26c0dee55ac7e3b /java/sql/Driver.java
parentdd5f534c94fe68e4f3aef2fe8a8be0f9035c7d53 (diff)
downloadclasspath-49386b54ba94e937a085f9484371a383d8905f0a.tar.gz
2006-04-22 Carsten Neumann <cn-develop@gmx.net>
* javax/sql/Array.java: Fixed eclipse API doc warnings, named method parameters consistendly, documented some methods. * java/sql/Blob.java: Likewise. * java/sql/CallableStatement.java: Likewise. * java/sql/Clob.java: Likewise. * java/sql/Connection.java: Likewise. * java/sql/DatabaseMetaData.java: Likewise. * java/sql/Date.java: Likewise. * java/sql/Driver.java: Likewise. * java/sql/PreparedStatement.java: Likewise. * java/sql/ResultSet.java: Likewise. * java/sql/ResultSetMetaData.java: Likewise. * java/sql/SQLData.java: Likewise. * java/sql/SQLOutput.java: Likewise. * java/sql/SQLWarning.java: Likewise. * java/sql/Statement.java: Likewise. * java/sql/Time.java: Likewise. * java/sql/Timestamp.java: Likewise. ----------------------------------------------------------------------
Diffstat (limited to 'java/sql/Driver.java')
-rw-r--r--java/sql/Driver.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/sql/Driver.java b/java/sql/Driver.java
index 19e66bc72..277dd1713 100644
--- a/java/sql/Driver.java
+++ b/java/sql/Driver.java
@@ -1,5 +1,5 @@
/* Driver.java -- A JDBC driver
- Copyright (C) 1999, 2000, 2006, Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -63,12 +63,12 @@ public interface Driver
* in this manner.
*
* @param url The URL string for this connection.
- * @param info The list of database connection properties.
+ * @param properties The list of database connection properties.
* @return A <code>Connection</code> object for the newly established
* connection, or <code>null</code> if the URL is not understood.
* @exception SQLException If an error occurs.
*/
- Connection connect(String url, Properties info) throws SQLException;
+ Connection connect(String url, Properties properties) throws SQLException;
/**
* This method tests whether or not the driver believes it can connect to