Method setTime(int parameterIndex, Time x)
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 ps.setTime(1, makeTime(1, 2, 3));
2 ps.setTime(index, (java.sql.Time)value);
3 public void setTime(int parameterIndex, Time x) throws SQLException { _stmt.setTime( parameterIndex, x); }
4 public void setTime(int parameterIndex, java.sql.Time x) throws SQLException { checkOpen(); _stmt.setTime(parameterIndex,x);}
5 _cs.setTime(p1, p2);
6 prepStmtPassthru.setTime(p0,p1);
7 ps.setTime(8, new java.sql.Time(System.currentTimeMillis()));
8 preparedStatement.setTime(parameterIndex, x);
9 m_pstmt.setTime (parameterIndex, x);
10 delegate_.setTime( parameterIndex, x );
11 _ps.setTime(_ind, field);
12 preparedStatement.setTime(position, (java.sql.Time) value);
13 ps.setTime(index, (Time) value);
14 statement.setTime(count, t);
15 statement.setTime(position, t);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.