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