diff options
| author | David Gilbert <david.gilbert@object-refinery.com> | 2006-04-20 18:04:56 +0000 |
|---|---|---|
| committer | David Gilbert <david.gilbert@object-refinery.com> | 2006-04-20 18:04:56 +0000 |
| commit | 6065de96735e1ea31f6dd688f06602f36019ff91 (patch) | |
| tree | c4d610e06f29533f3b7250e8c9f003fab07d8c14 /java/sql/Connection.java | |
| parent | 8bb27371ef6730f9e2a48d8bc5711054a743a49d (diff) | |
| download | classpath-6065de96735e1ea31f6dd688f06602f36019ff91.tar.gz | |
2006-04-20 David Gilbert <david.gilbert@object-refinery.com>
* java/sql/Array.java: Fixed Eclipse API doc warnings,
* 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/Connection.java')
| -rw-r--r-- | java/sql/Connection.java | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/java/sql/Connection.java b/java/sql/Connection.java index 48ec12dd0..58a3a81de 100644 --- a/java/sql/Connection.java +++ b/java/sql/Connection.java @@ -1,5 +1,5 @@ /* Connection.java -- Manage a database connection. - Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc. + Copyright (C) 1999, 2000, 2002, 2006, Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -101,7 +101,7 @@ public interface Connection * SQL string. This method is designed for use with parameterized * statements. The default result set type and concurrency will be used. * - * @param The SQL statement to use in creating this + * @param sql the SQL statement to use in creating this * <code>PreparedStatement</code>. * @return A new <code>PreparedStatement</code>. * @exception SQLException If an error occurs. @@ -115,7 +115,7 @@ public interface Connection * stored procedures. The default result set type and concurrency * will be used. * - * @param The SQL statement to use in creating this + * @param sql the SQL statement to use in creating this * <code>CallableStatement</code>. * @return A new <code>CallableStatement</code>. * @exception SQLException If an error occurs. @@ -127,7 +127,7 @@ public interface Connection * This method converts the specified generic SQL statement into the * native grammer of the database this object is connected to. * - * @param The JDBC generic SQL statement. + * @param sql the JDBC generic SQL statement. * @return The native SQL statement. * @exception SQLException If an error occurs. */ @@ -141,8 +141,8 @@ public interface Connection * @param autoCommit <code>true</code> to enable auto commit mode, * <code>false</code> to disable it. * @exception SQLException If an error occurs. - * @see commit - * @see rollback + * @see #commit() + * @see #rollback() */ void setAutoCommit(boolean autoCommit) throws SQLException; @@ -156,8 +156,8 @@ public interface Connection * * @exception SQLException If an error occurs. * - * @see commit - * @see rollback + * @see #commit() + * @see #rollback() */ boolean getAutoCommit() throws SQLException; @@ -283,7 +283,7 @@ public interface Connection * <code>ResultSet</code> class. * * @param resultSetType The type of result set to use for this statement. - * @param resultSetConcurrency. The type of concurrency to be used in + * @param resultSetConcurrency the type of concurrency to be used in * the result set for this statement. * @return A new <code>Statement</code> object. * @exception SQLException If an error occurs. @@ -300,10 +300,10 @@ public interface Connection * Valid values for these parameters are specified in the * <code>ResultSet</code> class. * - * @param The SQL statement to use in creating this + * @param sql the SQL statement to use in creating this * <code>PreparedStatement</code>. - * @param resultSetType The type of result set to use for this statement. - * @param resultSetConcurrency. The type of concurrency to be used in + * @param resultSetType the type of result set to use for this statement. + * @param resultSetConcurrency the type of concurrency to be used in * the result set for this statement. * @return A new <code>PreparedStatement</code>. * @exception SQLException If an error occurs. @@ -320,10 +320,10 @@ public interface Connection * will be used. Valid values for these parameters are specified in the * <code>ResultSet</code> class. * - * @param The SQL statement to use in creating this + * @param sql the SQL statement to use in creating this * <code>PreparedStatement</code>. * @param resultSetType The type of result set to use for this statement. - * @param resultSetConcurrency. The type of concurrency to be used in + * @param resultSetConcurrency the type of concurrency to be used in * the result set for this statement. * @return A new <code>CallableStatement</code>. * @exception SQLException If an error occurs. |
