Method setDate(int parameterIndex, Date x, Calendar cal)
Return type: void
Member of:
java.sql.PreparedStatement
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
public void setDate(int parameterIndex, Date x, Calendar cal) throws SQLException { _stmt.setDate( parameterIndex, x, cal); }
2
public void setDate(int parameterIndex, java.sql.Date x, Calendar cal) throws SQLException { checkOpen(); _stmt.setDate(parameterIndex,x,cal);}
3
_cs.setDate(p1, p2, p3);
4
prepStmtPassthru.setDate(p0,p1,p2);
5
m_pstmt.setDate (parameterIndex, x, cal);
6
preparedStatement.setDate(parameterIndex, x, cal);
7
ps.setDate(position, sqlDate, cal);
8
delegate_.setDate( parameterIndex, x, cal );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.