Method setAsciiStream(int parameterIndex, InputStream x, int length)
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.setAsciiStream(1, bis, 11);
2 public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException { _stmt.setAsciiStream( parameterIndex, x, length); }
3 public void setAsciiStream(int parameterIndex, java.io.InputStream x, int length) throws SQLException { checkOpen(); _stmt.setAsciiStream(parameterIndex,x,length);}
4 prepStmtPassthru.setAsciiStream(p0,p1,p2);
5 _cs.setAsciiStream(p1, p2, p3);
6 m_pstmt.setAsciiStream (parameterIndex, x, length);
7 preparedStatement.setAsciiStream(parameterIndex, x, length);
8 preparedStatement.setAsciiStream(position, (InputStream) value, length);
9 delegate_.setAsciiStream( parameterIndex, x, length );
10 statement.setAsciiStream(position, asciiStream, length);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.