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