public class SQLOutputImpl extends Object implements SQLOutput
When an application calls the
method PreparedStatement.setObject
, the driver
checks to see whether the value to be written is a UDT with
a custom mapping. If it is, there will be an entry in a
type map containing the Class
object for the
class that implements SQLData
for this UDT.
If the value to be written is an instance of SQLData
,
the driver will create an instance of SQLOutputImpl
and pass it to the method SQLData.writeSQL
.
The method writeSQL
in turn calls the
appropriate SQLOutputImpl.writeXXX
methods
to write data from the SQLData
object to
the SQLOutputImpl
output stream as the
representation of an SQL user-defined type.
Constructor and Description |
---|
SQLOutputImpl(Vector<?> attributes,
Map<String,?> map)
Creates a new
SQLOutputImpl object
initialized with the given vector of attributes and
type map. |
Modifier and Type | Method and Description |
---|---|
void |
writeArray(Array x)
Writes an
Array object in the Java
programming language to this SQLOutputImpl
object. |
void |
writeAsciiStream(InputStream x)
Writes a stream of ASCII characters to this
SQLOutputImpl object. |
void |
writeBigDecimal(BigDecimal x)
Writes a
java.math.BigDecimal object in the Java programming
language to this SQLOutputImpl object. |
void |
writeBinaryStream(InputStream x)
Writes a stream of uninterpreted bytes to this
SQLOutputImpl
object. |
void |
writeBlob(Blob x)
Writes a
Blob object in the Java programming language
to this SQLOutputImpl object. |
void |
writeBoolean(boolean x)
Writes a
boolean in the Java programming language
to this SQLOutputImpl object. |
void |
writeByte(byte x)
Writes a
byte in the Java programming language
to this SQLOutputImpl object. |
void |
writeBytes(byte[] x)
Writes an array of
bytes in the Java programming language
to this SQLOutputImpl object. |
void |
writeCharacterStream(Reader x)
Writes a stream of Unicode characters to this
SQLOutputImpl object. |
void |
writeClob(Clob x)
Writes a
Clob object in the Java programming language
to this SQLOutputImpl object. |
void |
writeDate(Date x)
Writes a
java.sql.Date object in the Java programming
language to this SQLOutputImpl object. |
void |
writeDouble(double x)
Writes a
double in the Java programming language
to this SQLOutputImpl object. |
void |
writeFloat(float x)
Writes a
float in the Java programming language
to this SQLOutputImpl object. |
void |
writeInt(int x)
Writes an
int in the Java programming language
to this SQLOutputImpl object. |
void |
writeLong(long x)
Writes a
long in the Java programming language
to this SQLOutputImpl object. |
void |
writeNClob(NClob x)
Writes an SQL
NCLOB value to the stream. |
void |
writeNString(String x)
Writes the next attribute to the stream as a
String
in the Java programming language. |
void |
writeObject(SQLData x)
Writes to the stream the data contained in the given
SQLData object. |
void |
writeRef(Ref x)
Writes a
Ref object in the Java programming language
to this SQLOutputImpl object. |
void |
writeRowId(RowId x)
Writes an SQL
ROWID value to the stream. |
void |
writeShort(short x)
Writes a
short in the Java programming language
to this SQLOutputImpl object. |
void |
writeSQLXML(SQLXML x)
Writes an SQL
XML value to the stream. |
void |
writeString(String x)
Writes a
String in the Java programming language
to this SQLOutputImpl object. |
void |
writeStruct(Struct x)
Writes a
Struct object in the Java
programming language to this SQLOutputImpl
object. |
void |
writeTime(Time x)
Writes a
java.sql.Time object in the Java programming
language to this SQLOutputImpl object. |
void |
writeTimestamp(Timestamp x)
Writes a
java.sql.Timestamp object in the Java programming
language to this SQLOutputImpl object. |
void |
writeURL(URL url)
Writes an
java.sql.Type.DATALINK object in the Java
programming language to this SQLOutputImpl object. |
public SQLOutputImpl(Vector<?> attributes, Map<String,?> map) throws SQLException
SQLOutputImpl
object
initialized with the given vector of attributes and
type map. The driver will use the type map to determine
which SQLData.writeSQL
method to invoke.
This method will then call the appropriate
SQLOutputImpl
writer methods in order and
thereby write the attributes to the new output stream.attributes
- a Vector
object containing the attributes of
the UDT to be mapped to one or more objects in the Java
programming languagemap
- a java.util.Map
object containing zero or
more entries, with each entry consisting of 1) a String
giving the fully qualified name of a UDT and 2) the
Class
object for the SQLData
implementation
that defines how the UDT is to be mappedSQLException
- if the attributes
or the map
is a null
valuepublic void writeString(String x) throws SQLException
String
in the Java programming language
to this SQLOutputImpl
object. The driver converts
it to an SQL CHAR
, VARCHAR
, or
LONGVARCHAR
before returning it to the database.writeString
in interface SQLOutput
x
- the value to pass to the databaseSQLException
- if the SQLOutputImpl
object is in
use by a SQLData
object attempting to write the attribute
values of a UDT to the database.public void writeBoolean(boolean x) throws SQLException
boolean
in the Java programming language
to this SQLOutputImpl
object. The driver converts
it to an SQL BIT
before returning it to the database.writeBoolean
in interface SQLOutput
x
- the value to pass to the databaseSQLException
- if the SQLOutputImpl
object is in
use by a SQLData
object attempting to write the attribute
values of a UDT to the database.public void writeByte(byte x) throws SQLException
byte
in the Java programming language
to this SQLOutputImpl
object. The driver converts
it to an SQL BIT
before returning it to the database.writeByte
in interface SQLOutput
x
- the value to pass to the databaseSQLException
- if the SQLOutputImpl
object is in
use by a SQLData
object attempting to write the attribute
values of a UDT to the database.public void writeShort(short x) throws SQLException
short
in the Java programming language
to this SQLOutputImpl
object. The driver converts
it to an SQL SMALLINT
before returning it to the database.writeShort
in interface SQLOutput
x
- the value to pass to the databaseSQLException
- if the SQLOutputImpl
object is in
use by a SQLData
object attempting to write the attribute
values of a UDT to the database.public void writeInt(int x) throws SQLException
int
in the Java programming language
to this SQLOutputImpl
object. The driver converts
it to an SQL INTEGER
before returning it to the database.writeInt
in interface SQLOutput
x
- the value to pass to the databaseSQLException
- if the SQLOutputImpl
object is in
use by a SQLData
object attempting to write the attribute
values of a UDT to the database.public void writeLong(long x) throws SQLException
long
in the Java programming language
to this SQLOutputImpl
object. The driver converts
it to an SQL BIGINT
before returning it to the database.writeLong
in interface SQLOutput
x
- the value to pass to the databaseSQLException
- if the SQLOutputImpl
object is in
use by a SQLData
object attempting to write the attribute
values of a UDT to the database.public void writeFloat(float x) throws SQLException
float
in the Java programming language
to this SQLOutputImpl
object. The driver converts
it to an SQL REAL
before returning it to the database.writeFloat
in interface SQLOutput
x
- the value to pass to the databaseSQLException
- if the SQLOutputImpl
object is in
use by a SQLData
object attempting to write the attribute
values of a UDT to the database.public void writeDouble(double x) throws SQLException
double
in the Java programming language
to this SQLOutputImpl
object. The driver converts
it to an SQL DOUBLE
before returning it to the database.writeDouble
in interface SQLOutput
x
- the value to pass to the databaseSQLException
- if the SQLOutputImpl
object is in
use by a SQLData
object attempting to write the attribute
values of a UDT to the database.public void writeBigDecimal(BigDecimal x) throws SQLException
java.math.BigDecimal
object in the Java programming
language to this SQLOutputImpl
object. The driver converts
it to an SQL NUMERIC
before returning it to the database.writeBigDecimal
in interface SQLOutput
x
- the value to pass to the databaseSQLException
- if the SQLOutputImpl
object is in
use by a SQLData
object attempting to write the attribute
values of a UDT to the database.public void writeBytes(byte[] x) throws SQLException
bytes
in the Java programming language
to this SQLOutputImpl
object. The driver converts
it to an SQL VARBINARY
or LONGVARBINARY
before returning it to the database.writeBytes
in interface SQLOutput
x
- the value to pass to the databaseSQLException
- if the SQLOutputImpl
object is in
use by a SQLData
object attempting to write the attribute
values of a UDT to the database.public void writeDate(Date x) throws SQLException
java.sql.Date
object in the Java programming
language to this SQLOutputImpl
object. The driver converts
it to an SQL DATE
before returning it to the database.writeDate
in interface SQLOutput
x
- the value to pass to the databaseSQLException
- if the SQLOutputImpl
object is in
use by a SQLData
object attempting to write the attribute
values of a UDT to the database.public void writeTime(