Method setTimestamp(int parameterIndex, Timestamp 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 setTimestamp(int parameterIndex, Timestamp x, Calendar cal) throws SQLException { _stmt.setTimestamp( parameterIndex, x, cal); }
2 public void setTimestamp(int parameterIndex, java.sql.Timestamp x, Calendar cal) throws SQLException { checkOpen(); _stmt.setTimestamp(parameterIndex,x,cal);}
3 prepStmtPassthru.setTimestamp(p0,p1,p2);
4 _cs.setTimestamp(p1, p2, p3);
5 m_pstmt.setTimestamp (parameterIndex, x, cal);
6 preparedStatement.setTimestamp(parameterIndex, x, cal);
7 ps.setTimestamp(position, sqlTimestamp, cal);
8 delegate_.setTimestamp( parameterIndex, x, cal );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.