src/share/classes/java/sql/CallableStatement.java

Print this page

        

@@ -1106,11 +1106,11 @@
      *          types, this value will be ignored.
      * @exception SQLException if parameterName does not correspond to a named
      * parameter; if a database access error occurs or
      * this method is called on a closed <code>CallableStatement</code>
      * @exception SQLFeatureNotSupportedException if
-     * the JDBC driver does not support this data type
+     * the JDBC driver does not support the specified targetSqlType
      * @see Types
      * @see #getObject
      * @since 1.4
      */
     void setObject(String parameterName, Object x, int targetSqlType, int scale)

@@ -1129,11 +1129,11 @@
      *                      sent to the database
      * @exception SQLException if parameterName does not correspond to a named
      * parameter; if a database access error occurs or
      * this method is called on a closed <code>CallableStatement</code>
      * @exception SQLFeatureNotSupportedException if
-     * the JDBC driver does not support this data type
+     * the JDBC driver does not support the specified targetSqlType
      * @see #getObject
      * @since 1.4
      */
     void setObject(String parameterName, Object x, int targetSqlType)
         throws SQLException;

@@ -2534,11 +2534,11 @@
      * or this method is called on a closed {@code CallableStatement}  or
      *            if the Java Object specified by x is an InputStream
      *            or Reader object and the value of the scale parameter is less
      *            than zero
      * @exception SQLFeatureNotSupportedException if
-     * the JDBC driver does not support this data type
+     * the JDBC driver does not support the specified targetSqlType
      * @see JDBCType
      * @see SQLType
      *
      * @since 1.8
      */

@@ -2560,11 +2560,11 @@
      * @param targetSqlType the SQL type to be sent to the database
      * @exception SQLException if parameterName does not correspond to a named
      * parameter; if a database access error occurs
      * or this method is called on a closed {@code CallableStatement}
      * @exception SQLFeatureNotSupportedException if
-     * the JDBC driver does not support this data type
+     * the JDBC driver does not support the specified targetSqlType
      * @see JDBCType
      * @see SQLType
      * @since 1.8
      */
      default void setObject(String parameterName, Object x, SQLType targetSqlType)

@@ -2601,11 +2601,11 @@
      *
      * @exception SQLException if the parameterIndex is not valid;
      * if a database access error occurs or
      * this method is called on a closed {@code CallableStatement}
      * @exception SQLFeatureNotSupportedException if
-     * the JDBC driver does not support this data type
+     * the JDBC driver does not support the specified sqlType
      * @see JDBCType
      * @see SQLType
      * @since 1.8
      */
     default void registerOutParameter(int parameterIndex, SQLType sqlType)

@@ -2637,11 +2637,11 @@
      * decimal point.  It must be greater than or equal to zero.
      * @exception SQLException if the parameterIndex is not valid;
      * if a database access error occurs or
      * this method is called on a closed {@code CallableStatement}
      * @exception SQLFeatureNotSupportedException if
-     * the JDBC driver does not support this data type
+     * the JDBC driver does not support the specified sqlType
      * @see JDBCType
      * @see SQLType
      * @since 1.8
      */
     default void registerOutParameter(int parameterIndex, SQLType sqlType,

@@ -2684,11 +2684,11 @@
      * @param typeName the fully-qualified name of an SQL structured type
      * @exception SQLException if the parameterIndex is not valid;
      * if a database access error occurs or
      * this method is called on a closed {@code CallableStatement}
      * @exception SQLFeatureNotSupportedException if
-     * the JDBC driver does not support this data type
+     * the JDBC driver does not support the specified sqlType
      * @see JDBCType
      * @see SQLType
      * @since 1.8
      */
     default void registerOutParameter (int parameterIndex, SQLType sqlType,

@@ -2723,11 +2723,11 @@
      * should be used.
      * @exception SQLException if parameterName does not correspond to a named
      * parameter; if a database access error occurs or
      * this method is called on a closed {@code CallableStatement}
      * @exception SQLFeatureNotSupportedException if
-     * the JDBC driver does not support this data type
+     * the JDBC driver does not support the specified sqlType
      * or if the JDBC driver does not support
      * this method
      * @since 1.8
      * @see JDBCType
      * @see SQLType

@@ -2760,11 +2760,11 @@
      * decimal point.  It must be greater than or equal to zero.
      * @exception SQLException if parameterName does not correspond to a named
      * parameter; if a database access error occurs or
      * this method is called on a closed {@code CallableStatement}
      * @exception SQLFeatureNotSupportedException if
-     * the JDBC driver does not support this data type
+     * the JDBC driver does not support the specified sqlType
      * or if the JDBC driver does not support
      * this method
      * @since 1.8
      * @see JDBCType
      * @see SQLType

@@ -2809,11 +2809,11 @@
      * @param typeName the fully-qualified name of an SQL structured type
      * @exception SQLException if parameterName does not correspond to a named
      * parameter; if a database access error occurs or
      * this method is called on a closed {@code CallableStatement}
      * @exception SQLFeatureNotSupportedException if
-     * the JDBC driver does not support this data type
+     * the JDBC driver does not support the specified sqlType
      * or if the JDBC driver does not support this method
      * @see JDBCType
      * @see SQLType
      * @since 1.8
      */