Searched refs:setNull (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/sql/
H A DPreparedStatement.java406 * this version of {@code setNull} for <i>User Defined Types</i> (UDT) or
418 public void setNull(int parameterIndex, int sqlType) throws SQLException; method in interface:PreparedStatement
422 * of {@code setNull} should be used for <i>User Defined Types</i> (UDTs)
444 public void setNull(int paramIndex, int sqlType, String typeName) method in interface:PreparedStatement
H A DCallableStatement.java1128 * this version of {@code setNull} for <i>User Defined Types</i> (UDT) or
1138 public void setNull(String parameterName, int sqlType) throws SQLException; method in interface:CallableStatement
1163 public void setNull(String parameterName, int sqlType, String typeName) method in interface:CallableStatement
/libcore/luni/src/main/java/javax/sql/
H A DRowSet.java1252 public void setNull(int parameterIndex, int sqlType) throws SQLException; method in interface:RowSet
1256 * to SQL {@code NULL}. This form of the {@code setNull} method should be
1272 public void setNull(int parameterIndex, int sqlType, String typeName) method in interface:RowSet
1277 * NULL. This form of the <code>setNull</code> method should be used for
1287 public void setNull(String parameterName, int sqlType) throws SQLException; method in interface:RowSet
1291 * NULL. This form of the <code>setNull</code> method should be used for
1305 public void setNull(String parameterName, int sqlType, String typeName) method in interface:RowSet
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldPreparedStatementTest.java1468 ps.setNull(1, Types.INTEGER);
1481 ps.setNull(1, Types.BIGINT);
1494 ps.setNull(1, Types.DECIMAL);
1507 ps.setNull(1, Types.DATE);
1520 ps.setNull(1, Types.BLOB);
1531 ps.setNull(1, Types.CHAR);
1559 ps.setNull(1, Types.DATALINK);
1590 ps.setNull(1, 1, "");
1619 ps.setNull(1, 1, "");

Completed in 30 milliseconds