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

/openjdk7/jdk/src/share/classes/java/sql/
H A DPreparedStatement.java115 void setNull(int parameterIndex, int sqlType) throws SQLException; method in interface:PreparedStatement
436 * the backend. For maximum portability, the <code>setNull</code> or the
681 * This version of the method <code>setNull</code> should
716 void setNull (int parameterIndex, int sqlType, String typeName) method in interface:PreparedStatement
H A DCallableStatement.java794 void setNull(String parameterName, int sqlType) throws SQLException; method in interface:CallableStatement
1176 * the backend. For maximum portability, the <code>setNull</code> or the
1300 * This version of the method <code>setNull</code> should
1329 void setNull (String parameterName, int sqlType, String typeName) method in interface:CallableStatement
/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSet.java456 void setNull(int parameterIndex, int sqlType) throws SQLException; method in interface:RowSet
471 void setNull(String parameterName, int sqlType) throws SQLException; method in interface:RowSet
475 * command to SQL <code>NULL</code>. This version of the method <code>setNull</code>
501 void setNull (int paramIndex, int sqlType, String typeName) method in interface:RowSet
506 * This version of the method <code>setNull</code> should
536 void setNull (String parameterName, int sqlType, String typeName) method in interface:RowSet
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DBaseRowSet.java187 * additional information. In this category, the method <code>setNull</code> is a special case
189 * two parameters (<code>setNull(int parameterIndex, int SqlType)</code>). Nevertheless,
199 * (<code>setNull(int parameterIndex, int sqlType, String typeName)</code>) and also
202 * <code>setNull</code>. The third element, <i>typeName</i>, gives the SQL name of
206 * supplied to <code>setNull</code> is <code>2</code>, the second element in the array
1529 * <code>setNull</code>
1560 public void setNull(int parameterIndex, int sqlType) throws SQLException { method in class:BaseRowSet
1569 throw new SQLException("Set initParams() before setNull");
1578 * Although this version of the method <code>setNull</code> is intended
1608 * <code>setNull</cod
1639 public void setNull(int parameterIndex, int sqlType, String typeName) method in class:BaseRowSet
3209 public void setNull(String parameterName, int sqlType) throws SQLException { method in class:BaseRowSet
3246 public void setNull (String parameterName, int sqlType, String typeName) method in class:BaseRowSet
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java717 ps.setNull(i + 1, ((Integer)param[1]).intValue());
753 ps.setNull(i + 1, ((Integer)param[1]).intValue(),
6849 public void setNull(String parameterName, int sqlType) throws SQLException { method in class:JdbcRowSetImpl
6855 * This version of the method <code>setNull</code> should
6885 public void setNull (String parameterName, int sqlType, String typeName) method in class:JdbcRowSetImpl
H A DCachedRowSetImpl.java9928 public void setNull(String parameterName, int sqlType) throws SQLException { method in class:CachedRowSetImpl
9935 * This version of the method <code>setNull</code> should
9965 public void setNull (String parameterName, int sqlType, String typeName) method in class:CachedRowSetImpl

Completed in 104 milliseconds