You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/03/17 21:46:46 UTC

svn commit: r1457559 - in /commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2: BatchExecutor.java QueryExecutor.java

Author: sebb
Date: Sun Mar 17 20:46:46 2013
New Revision: 1457559

URL: http://svn.apache.org/r1457559
Log:
Javadoc errors

Modified:
    commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java
    commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/QueryExecutor.java

Modified: commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java
URL: http://svn.apache.org/viewvc/commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java?rev=1457559&r1=1457558&r2=1457559&view=diff
==============================================================================
--- commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java (original)
+++ commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java Sun Mar 17 20:46:46 2013
@@ -50,7 +50,7 @@ public class BatchExecutor extends Abstr
      * @param value the value to bind to the parameter.
      * @return this object.
      * @throws SQLException thrown if the statement number does not exist, or any other SQLException.
-     * @see org.apache.commons.dbutils.UpdateExecutor.bind(String, Object)
+     * @see org.apache.commons.dbutils2.UpdateExecutor#bind(String, Object)
      */
     @Override
     public BatchExecutor bind(final String name, final Object value) throws SQLException {
@@ -86,7 +86,7 @@ public class BatchExecutor extends Abstr
      * Adds the statement to the batch after binding all of the parameters.
      * @return this object.
      * @throws SQLException if a SQLException is thrown during the addBatch() call.
-     * @see java.sql.PreparedStatement.addBatch()
+     * @see java.sql.PreparedStatement#addBatch()
      */
     public BatchExecutor addBatch() throws SQLException {
         try {
@@ -103,7 +103,7 @@ public class BatchExecutor extends Abstr
      * Calls batch after checking the parameters to ensure nothing is null.
      * @return an array containing the number of rows updated for each statement.
      * @throws SQLException If there are database or parameter errors.
-     * @see org.apache.commons.dbutils.UpdateExecutor.update()
+     * @see org.apache.commons.dbutils2.UpdateExecutor#execute()
      */
     public int[] execute() throws SQLException {
         try {

Modified: commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/QueryExecutor.java
URL: http://svn.apache.org/viewvc/commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/QueryExecutor.java?rev=1457559&r1=1457558&r2=1457559&view=diff
==============================================================================
--- commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/QueryExecutor.java (original)
+++ commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/QueryExecutor.java Sun Mar 17 20:46:46 2013
@@ -45,7 +45,7 @@ class QueryExecutor extends AbstractExec
     /**
      * Calls query after checking the parameters to ensure nothing is null.
      *
-     * @param rsh The handler that converts the results into an object.
+     * @param handler The handler that converts the results into an object.
      *
      * @return The results of the query.
      * @throws SQLException If there are database or parameter errors.