SQLOutput (Java SE 13 & JDK 13 )

  • Method Details

    • writeString

      Writes the next attribute to the stream as a String in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeBoolean

      void writeBoolean​(boolean x) throws SQLException

      Writes the next attribute to the stream as a Java boolean. Writes the next attribute to the stream as a String in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeByte

      Writes the next attribute to the stream as a Java byte. Writes the next attribute to the stream as a String in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeShort

      Writes the next attribute to the stream as a Java short. Writes the next attribute to the stream as a String in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeInt

      Writes the next attribute to the stream as a Java int. Writes the next attribute to the stream as a String in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeLong

      Writes the next attribute to the stream as a Java long. Writes the next attribute to the stream as a String in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeFloat

      Writes the next attribute to the stream as a Java float. Writes the next attribute to the stream as a String in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeDouble

      Writes the next attribute to the stream as a Java double. Writes the next attribute to the stream as a String in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeBigDecimal

      Writes the next attribute to the stream as a java.math.BigDecimal object. Writes the next attribute to the stream as a String in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeBytes

      Writes the next attribute to the stream as an array of bytes. Writes the next attribute to the stream as a String in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeDate

      Writes the next attribute to the stream as a java.sql.Date object. Writes the next attribute to the stream as a java.sql.Date object in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeTime

      Writes the next attribute to the stream as a java.sql.Time object. Writes the next attribute to the stream as a java.sql.Date object in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeTimestamp

      Writes the next attribute to the stream as a java.sql.Timestamp object. Writes the next attribute to the stream as a java.sql.Date object in the Java programming language.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeCharacterStream

      Writes the next attribute to the stream as a stream of Unicode characters.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeAsciiStream

      Writes the next attribute to the stream as a stream of ASCII characters.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeBinaryStream

      Writes the next attribute to the stream as a stream of uninterpreted bytes.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeObject

      Writes to the stream the data contained in the given SQLData object. When the SQLData object is null, this method writes an SQL NULL to the stream. Otherwise, it calls the SQLData.writeSQL method of the given object, which writes the object's attributes to the stream. The implementation of the method SQLData.writeSQL calls the appropriate SQLOutput writer method(s) for writing each of the object's attributes in order. The attributes must be read from an SQLInput input stream and written to an SQLOutput output stream in the same order in which they were listed in the SQL definition of the user-defined type.

      Parameters:
      x - the object representing data of an SQL structured or distinct type
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeRef

      Writes an SQL REF value to the stream.

      Parameters:
      x - a Ref object representing data of an SQL REF value
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeBlob

      Writes an SQL BLOB value to the stream.

      Parameters:
      x - a Blob object representing data of an SQL BLOB value
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeClob

      Writes an SQL CLOB value to the stream.

      Parameters:
      x - a Clob object representing data of an SQL CLOB value
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeStruct

      Writes an SQL structured type value to the stream.

      Parameters:
      x - a Struct object representing data of an SQL structured type
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeArray

      Writes an SQL ARRAY value to the stream.

      Parameters:
      x - an Array object representing data of an SQL ARRAY type
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.2
    • writeURL

      Writes a SQL DATALINK value to the stream.

      Parameters:
      x - a java.net.URL object representing the data of SQL DATALINK type
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.4
    • writeNString

      Writes the next attribute to the stream as a String in the Java programming language. The driver converts this to a SQL NCHAR or NVARCHAR or LONGNVARCHAR value (depending on the argument's size relative to the driver's limits on NVARCHAR values) when it sends it to the stream.

      Parameters:
      x - the value to pass to the database
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.6
    • writeNClob

      Writes an SQL NCLOB value to the stream.

      Parameters:
      x - a NClob object representing data of an SQL NCLOB value
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.6
    • writeRowId

      Writes an SQL ROWID value to the stream.

      Parameters:
      x - a RowId object representing data of an SQL ROWID value
      Throws:
      SQLException - if a database access error occurs
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.6
    • writeSQLXML

      Writes an SQL XML value to the stream.

      Parameters:
      x - a SQLXML object representing data of an SQL XML value
      Throws:
      SQLException - if a database access error occurs, the java.xml.transform.Result, Writer or OutputStream has not been closed for the SQLXML object or if there is an error processing the XML value. The getCause method of the exception may provide a more detailed exception, for example, if the stream does not contain valid XML.
      SQLFeatureNotSupportedException - if the JDBC driver does not support this method
      Since:
      1.6
    • writeObject

      Writes to the stream the data contained in the given object. The object will be converted to the specified targetSqlType before being sent to the stream.

      When the object is null, this method writes an SQL NULL to the stream.

      If the object has a custom mapping (is of a class implementing the interface SQLData), the JDBC driver should call the method SQLData.writeSQL to write it to the SQL data stream. If, on the other hand, the object is of a class implementing Ref, Blob, Clob, NClob, Struct, java.net.URL, or Array, the driver should pass it to the database as a value of the corresponding SQL type.

      The default implementation will throw SQLFeatureNotSupportedException

      Parameters:
      x - the object containing the input parameter value
      targetSqlType - the SQL type to be sent to the database.
      Throws:
      SQLException - if a database access error occurs or if the Java Object specified by x is an InputStream or Reader object and the value of the scale parameter is less than zero
      SQLFeatureNotSupportedException - if the JDBC driver does not support this data type
      Since:
      1.8
      See Also:
      JDBCType, SQLType