Searched defs:sqlType (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/java/sql/
H A DPreparedStatement.java103 * @param sqlType the SQL type code defined in <code>java.sql.Types</code>
107 * @exception SQLFeatureNotSupportedException if <code>sqlType</code> is
115 void setNull(int parameterIndex, int sqlType) throws SQLException; argument
437 * <code>setObject(int parameterIndex, Object x, int sqlType)</code>
701 * @param sqlType a value from <code>java.sql.Types</code>
707 * @exception SQLFeatureNotSupportedException if <code>sqlType</code> is
716 void setNull (int parameterIndex, int sqlType, String typeName) argument
H A DCallableStatement.java70 * <code>sqlType</code>. All OUT parameters must be registered
73 * The JDBC type specified by <code>sqlType</code> for an OUT
78 * is specific to this particular database, <code>sqlType</code>
84 * @param sqlType the JDBC type code defined by <code>java.sql.Types</code>.
93 * @exception SQLFeatureNotSupportedException if <code>sqlType</code> is
102 void registerOutParameter(int parameterIndex, int sqlType) argument
108 * <code>sqlType</code>. All OUT parameters must be registered
111 * The JDBC type specified by <code>sqlType</code> for an OUT
121 * @param sqlType the SQL type code defined by <code>java.sql.Types</code>.
127 * @exception SQLFeatureNotSupportedException if <code>sqlType</cod
136 registerOutParameter(int parameterIndex, int sqlType, int scale) argument
618 registerOutParameter(int parameterIndex, int sqlType, String typeName) argument
657 registerOutParameter(String parameterName, int sqlType) argument
692 registerOutParameter(String parameterName, int sqlType, int scale) argument
739 registerOutParameter(String parameterName, int sqlType, String typeName) argument
794 setNull(String parameterName, int sqlType) argument
1329 setNull(String parameterName, int sqlType, String typeName) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSet.java453 * @param sqlType a SQL type code defined by <code>java.sql.Types</code>
456 void setNull(int parameterIndex, int sqlType) throws SQLException; argument
464 * @param sqlType the SQL type code defined in <code>java.sql.Types</code>
471 void setNull(String parameterName, int sqlType) throws SQLException; argument
495 * @param sqlType a value from <code>java.sql.Types</code>
501 void setNull (int paramIndex, int sqlType, String typeName) argument
526 * @param sqlType a value from <code>java.sql.Types</code>
536 void setNull (String parameterName, int sqlType, String typeName) argument
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DBaseRowSet.java193 * second element is the <code>int</code> supplied for <i>sqlType</i>, which
199 * (<code>setNull(int parameterIndex, int sqlType, String typeName)</code>) and also
1534 * The second element is the value set for <i>sqlType</i>.
1551 * @param sqlType an <code>int</code> that is one of the SQL type codes
1553 * <i>sqlType</i> is supplied, this method will not throw a
1560 public void setNull(int parameterIndex, int sqlType) throws SQLException { argument
1566 nullVal[1] = Integer.valueOf(sqlType);
1613 * The second element is the value set for <i>sqlType</i>, and the third
1631 * @param sqlType a value from <code>java.sql.Types</code>
1639 public void setNull(int parameterIndex, int sqlType, Strin argument
3209 setNull(String parameterName, int sqlType) argument
3246 setNull(String parameterName, int sqlType, String typeName) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java6842 * @param sqlType the SQL type code defined in <code>java.sql.Types</code>
6849 public void setNull(String parameterName, int sqlType) throws SQLException { argument
6875 * @param sqlType a value from <code>java.sql.Types</code>
6885 public void setNull (String parameterName, int sqlType, String typeName) argument
H A DCachedRowSetImpl.java9921 * @param sqlType the SQL type code defined in <code>java.sql.Types</code>
9928 public void setNull(String parameterName, int sqlType) throws SQLException { argument
9955 * @param sqlType a value from <code>java.sql.Types</code>
9965 public void setNull (String parameterName, int sqlType, String typeName) argument

Completed in 123 milliseconds