Searched defs:setAsciiStream (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/java/sql/
H A DClob.java123 * @see #setAsciiStream
257 java.io.OutputStream setAsciiStream(long pos) throws SQLException; method in interface:Clob
H A DPreparedStatement.java316 void setAsciiStream(int parameterIndex, java.io.InputStream x, int length) method in interface:PreparedStatement
993 void setAsciiStream(int parameterIndex, java.io.InputStream x, long length) method in interface:PreparedStatement
1056 * <code>setAsciiStream</code> which takes a length parameter.
1066 void setAsciiStream(int parameterIndex, java.io.InputStream x) method in interface:PreparedStatement
H A DCallableStatement.java1052 void setAsciiStream(String parameterName, java.io.InputStream x, int length) method in interface:CallableStatement
2211 void setAsciiStream(String parameterName, java.io.InputStream x, long length) method in interface:CallableStatement
2279 * <code>setAsciiStream</code> which takes a length parameter.
2289 void setAsciiStream(String parameterName, java.io.InputStream x) method in interface:CallableStatement
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialClob.java423 * <code>setAsciiStream()</code> call to the underlying <code>Clob</code> object in
432 * Clob object that supports <code>setAsciiStream</code>
437 public java.io.OutputStream setAsciiStream(long pos) method in class:SerialClob
439 if (this.clob.setAsciiStream(pos) != null) {
440 return this.clob.setAsciiStream(pos);
444 "that has a setAsciiStream() implementation");
/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSet.java892 void setAsciiStream(int parameterIndex, java.io.InputStream x, int length) method in interface:RowSet
917 void setAsciiStream(String parameterName, java.io.InputStream x, int length) method in interface:RowSet
1027 * <code>setAsciiStream</code> which takes a length parameter.
1036 void setAsciiStream(int parameterIndex, java.io.InputStream x) method in interface:RowSet
1052 * <code>setAsciiStream</code> which takes a length parameter.
1061 void setAsciiStream(String parameterName, java.io.InputStream x) method in interface:RowSet
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DBaseRowSet.java219 * The methods <code>setAsciiStream</code>, <code>setBinaryStream</code>,
2147 * Calls made to the method <code>getParams</code> after <code>setAsciiStream</code>
2182 public void setAsciiStream(int parameterIndex, java.io.InputStream x, int length) throws SQLException { method in class:BaseRowSet
2192 throw new SQLException("Set initParams() before setAsciiStream");
2212 * <code>setAsciiStream</code> which takes a length parameter.
2221 public void setAsciiStream(int parameterIndex, java.io.InputStream x) method in class:BaseRowSet
3499 public void setAsciiStream(String parameterName, java.io.InputStream x, int length) method in class:BaseRowSet
3575 * <code>setAsciiStream</code> which takes a length parameter.
3584 public void setAsciiStream(String parameterName, java.io.InputStream x) method in class:BaseRowSet
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java769 ps.setAsciiStream(i + 1,
6610 public void setAsciiStream(String parameterName, java.io.InputStream x, int length) method in class:JdbcRowSetImpl
6684 * <code>setAsciiStream</code> which takes a length parameter.
6693 public void setAsciiStream(String parameterName, java.io.InputStream x) method in class:JdbcRowSetImpl
H A DCachedRowSetImpl.java9681 public void setAsciiStream(String parameterName, java.io.InputStream x, int length) method in class:CachedRowSetImpl
9757 * <code>setAsciiStream</code> which takes a length parameter.
9766 public void setAsciiStream(String parameterName, java.io.InputStream x) method in class:CachedRowSetImpl

Completed in 113 milliseconds