Changeset: 58adb4d84136 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=58adb4d84136
Modified Files:
        java/src/main/java/nl/cwi/monetdb/jdbc/MonetPreparedStatement.java
        java/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
        java/src/main/java/nl/cwi/monetdb/jdbc/MonetStatement.java
Branch: Jul2015
Log Message:

Fix a few more javadoc warnings


diffs (52 lines):

diff --git a/java/src/main/java/nl/cwi/monetdb/jdbc/MonetPreparedStatement.java 
b/java/src/main/java/nl/cwi/monetdb/jdbc/MonetPreparedStatement.java
--- a/java/src/main/java/nl/cwi/monetdb/jdbc/MonetPreparedStatement.java
+++ b/java/src/main/java/nl/cwi/monetdb/jdbc/MonetPreparedStatement.java
@@ -988,7 +988,6 @@ public class MonetPreparedStatement
         *
         * @param parameterIndex the first parameter is 1, the second is 2, ...
         * @param x the java input stream which contains the binary parameter 
value
-        * @param length the number of bytes in the stream
         * @throws SQLException if a database access error occurs
         * @throws SQLFeatureNotSupportedException the JDBC driver does
         *         not support this method
@@ -1197,7 +1196,6 @@ public class MonetPreparedStatement
         * 
         * @param parameterIndex the first parameter is 1, the second is 2, ...
         * @param reader the java.io.Reader object that contains the Unicode 
data
-        * @param length the number of characters in the stream
         * @throws SQLException if a database access error occurs
         * @throws SQLFeatureNotSupportedException the JDBC driver does
         *         not support this method
@@ -1259,7 +1257,7 @@ public class MonetPreparedStatement
         * converts this to an SQL CLOB value when it sends it to the database.
         *
         * @param i the first parameter is 1, the second is 2, ...
-        * @param x an object that contains the data to set the parameter
+        * @param reader an object that contains the data to set the parameter
         *          value to
         * @throws SQLException if a database access error occurs
         * @throws SQLFeatureNotSupportedException the JDBC driver does
diff --git a/java/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java 
b/java/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
--- a/java/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
+++ b/java/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
@@ -354,7 +354,7 @@ public class MonetResultSet extends Mone
         * when the method available  is called whether there is data
         * available or not.
         *
-        * @param columnLabel the label for the column specified with
+        * @param columnName the label for the column specified with
         * the SQL AS clause. If the SQL AS clause was not specified, then
         * the label is the name of the column 
         * @return a Java input stream that delivers the database column
diff --git a/java/src/main/java/nl/cwi/monetdb/jdbc/MonetStatement.java 
b/java/src/main/java/nl/cwi/monetdb/jdbc/MonetStatement.java
--- a/java/src/main/java/nl/cwi/monetdb/jdbc/MonetStatement.java
+++ b/java/src/main/java/nl/cwi/monetdb/jdbc/MonetStatement.java
@@ -416,7 +416,7 @@ public class MonetStatement extends Mone
         *         elements in the int array passed to this method are not
         *         valid column indexes
         */
-       public boolean execute(String sql, int[] columnIndexed)
+       public boolean execute(String sql, int[] columnIndexes)
                throws SQLException
        {
                addWarning("execute: generated keys for fixed set of columns 
not supported", "01M18");
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to