java.sql
public interface SQLOutput
Method Summary | |
---|---|
void | writeArray(Array value)
This method writes the specified Java SQL Array object
to the SQL stream.
|
void | writeAsciiStream(InputStream stream)
This method writes the specified ASCII text stream
to the SQL stream.
|
void | writeBigDecimal(BigDecimal value)
This method writes the specified Java BigDecimal
to the SQL stream.
|
void | writeBinaryStream(InputStream stream)
This method writes the specified uninterpreted binary byte stream
to the SQL stream.
|
void | writeBlob(Blob value)
This method writes the specified Java SQL Blob object
to the SQL stream.
|
void | writeBoolean(boolean value)
This method writes the specified Java boolean
to the SQL stream.
|
void | writeByte(byte value)
This method writes the specified Java byte
to the SQL stream.
|
void | writeBytes(byte[] value)
This method writes the specified Java byte array
to the SQL stream.
|
void | writeCharacterStream(Reader stream)
This method writes the specified Java character stream
to the SQL stream.
|
void | writeClob(Clob value)
This method writes the specified Java SQL Clob object
to the SQL stream.
|
void | writeDate(Date value)
This method writes the specified Java java.sql.Date
to the SQL stream.
|
void | writeDouble(double value)
This method writes the specified Java double
to the SQL stream.
|
void | writeFloat(float value)
This method writes the specified Java float
to the SQL stream.
|
void | writeInt(int value)
This method writes the specified Java int
to the SQL stream.
|
void | writeLong(long value)
This method writes the specified Java long
to the SQL stream.
|
void | writeObject(SQLData value)
This method writes the specified Java SQLData object
to the SQL stream.
|
void | writeRef(Ref value)
This method writes the specified Java SQL Ref object
to the SQL stream.
|
void | writeShort(short value)
This method writes the specified Java short
to the SQL stream.
|
void | writeString(String value)
This method writes the specified Java String
to the SQL stream.
|
void | writeStruct(Struct value)
This method writes the specified Java SQL Struct object
to the SQL stream.
|
void | writeTime(Time value)
This method writes the specified Java java.sql.Time
to the SQL stream.
|
void | writeTimestamp(Timestamp value)
This method writes the specified Java java.sql.Timestamp
to the SQL stream.
|
void | writeURL(URL value)
This method writes the specified java.net.URL object to the
SQL stream.
|
Array
object
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
Parameters: stream The stream that holds the ASCII data to write.
Throws: SQLException If an error occurs.
BigDecimal
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
Parameters: stream The stream that holds the binary data to write.
Throws: SQLException If an error occurs.
Blob
object
to the SQL stream.
Parameters: value The Blob
object to write to the stream.
Throws: SQLException If an error occurs.
See Also: Blob
boolean
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
byte
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
byte
array
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
Parameters: stream The stream that holds the character data to write.
Throws: SQLException If an error occurs.
Clob
object
to the SQL stream.
Parameters: value The Clob
object to write to the stream.
Throws: SQLException If an error occurs.
See Also: Clob
java.sql.Date
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
double
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
float
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
int
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
long
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
SQLData
object
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
Ref
object
to the SQL stream.
Parameters: value The Ref
object to write to the stream.
Throws: SQLException If an error occurs.
See Also: Ref
short
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
String
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
Struct
object
to the SQL stream.
Parameters: value The Struct
object to write to the stream.
Throws: SQLException If an error occurs.
See Also: Struct
java.sql.Time
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
java.sql.Timestamp
to the SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
java.net.URL
object to the
SQL stream.
Parameters: value The value to write to the stream.
Throws: SQLException If an error occurs.
Since: 1.4