Method setClob(int i, Clob 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 public void setClob(int i, Clob x) throws SQLException { _stmt.setClob( i, x); }
2 public void setClob (int i, Clob x) throws SQLException { checkOpen(); _stmt.setClob(i,x);}
3 _cs.setClob(p1, p2);
4 prepStmtPassthru.setClob(p0,p1);
5 preparedStatement.setClob(i, x);
6 delegate_.setClob( i, x );
7 _ps.setClob(_ind, field);
8 preparedStatement.setClob(position, (Clob) value);
9 ps.setClob(index, (Clob) value);
10 statement.setClob(position, clob);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.