API java : SQLOutput


java.sql
Interface SQLOutput

All Known Implementing Classes:
SQLOutputImpl

public interface SQLOutput

The output stream for writing the attributes of a user-defined type back to the database. This interface, used only for custom mapping, is used by the driver, and its methods are never directly invoked by a programmer.

When an object of a class implementing the interface SQLData is passed as an argument to an SQL statement, the JDBC driver calls the method SQLData.getSQLType to determine the kind of SQL datum being passed to the database. The driver then creates an instance of SQLOutput and passes it to the method SQLData.writeSQL. The method writeSQL in turn calls the appropriate SQLOutput writer methods writeBoolean, writeCharacterStream, and so on) to write data from the SQLData object to the SQLOutput output stream as the representation of an SQL user-defined type.

Since:
1.2

Method Summary
 void writeArray(Array x)
          Writes an SQL ARRAY value to the stream.
 void writeAsciiStream(InputStream x)
          Writes the next attribute to the stream as a stream of ASCII characters.
 void writeBigDecimal(BigDecimal x)
          Writes the next attribute to the stream as a java.math.BigDecimal object.
 void writeBinaryStream(InputStream x)
          Writes the next attribute to the stream as a stream of uninterpreted bytes.
 void writeBlob(Blob x)
          Writes an SQL BLOB value to the stream.
 void writeBoolean(boolean x)
          Writes the next attribute to the stream as a Java boolean.
 void writeByte(byte x)
          Writes the next attribute to the stream as a Java byte.
 void writeBytes(byte[] x)
          Writes the next attribute to the stream as an array of bytes.
 void writeCharacterStream(Reader x)
          Writes the next attribute to the stream as a stream of Unicode characters.
 void writeClob(Clob x)
          Writes an SQL CLOB value to the stream.
 void writeDate(Date x)
          Writes the next attribute to the stream as a java.sql.Date object.
 void writeDouble(double x)
          Writes the next attribute to the stream as a Java double.
 void writeFloat(float x)
          Writes the next attribute to the stream as a Java float.
 void writeInt(int x)
          Writes the next attribute to the stream as a Java int.
 void writeLong(long x)
          Writes the next attribute to the stream as a Java long.
 void writeObject(SQLData x)
          Writes to the stream the data contained in the given SQLData object.
 void writeRef(Ref x)
          Writes an SQL REF value to the stream.
 void writeShort(short x)
          Writes the next attribute to the stream as a Java short.
 void writeString(String x)
          Writes the next attribute to the stream as a String in the Java programming language.
 void writeStruct(Struct x)
          Writes an SQL structured type value to the stream.
 void writeTime(Time x)
          Writes the next attribute to the stream as a java.sql.Time object.
 void writeTimestamp(Timestamp x)
          Writes the next attribute to the stream as a java.sql.Timestamp object.
 void writeURL(URL x)
          Writes a SQL DATALINK value to the stream.
 

Method Detail

writeString

void writeString(String x)
                 throws SQLException
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

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

writeByte

void writeByte(byte x)
               throws SQLException
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

writeShort

void writeShort(short x)
                throws SQLException
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

writeInt

void writeInt(int x)
              throws SQLException
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

writeLong

void writeLong(long x)
               throws SQLException
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

writeFloat

void writeFloat(float x)
                throws SQLException
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

writeDouble

void writeDouble(double x)
                 throws SQLException
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

writeBigDecimal

void writeBigDecimal(BigDecimal x)
                     throws SQLException
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

writeBytes

void writeBytes(byte[] x)
                throws SQLException
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

writeDate

void writeDate(Date x)
               throws SQLException
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

writeTime

void writeTime(Time x)
               throws SQLException
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

writeTimestamp

void writeTimestamp(Timestamp x)
                    throws SQLException
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

writeCharacterStream

void writeCharacterStream(Reader x)
                          throws SQLException
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

writeAsciiStream

void writeAsciiStream(InputStream x)
                      throws SQLException
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

writeBinaryStream

void writeBinaryStream(InputStream x)
                       throws SQLException
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

writeObject

void writeObject(SQLData x)
                 throws SQLException
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.writeSQ 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

writeRef

void writeRef(Ref x)
              throws SQLException
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

writeBlob

void writeBlob(Blob x)
               throws SQLException
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

writeClob

void writeClob(Clob x)
               throws SQLException
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

writeStruct

void writeStruct(Struct x)
                 throws SQLException
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

writeArray

void writeArray(Array x)
                throws SQLException
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

writeURL

void writeURL(URL x)
              throws SQLException
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
Since:
1.4

Ces informations proviennent du site de http://java.sun.com

Remarques

Contenu

Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :

Quels sont les motivations de cette démarche?

Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.

Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.

Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.

Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.

Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.

Réseaux sociaux

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.

 

Nuage de mots clés

6 mots clés dont 0 définis manuellement (plus d'information...).

Avertissement

Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.

 

Astuce pour imprimer les couleurs des cellules de tableaux : http://www.gaudry.be/ast-rf-450.html
Aucun commentaire pour cette page

© Ce document issu de l′infobrol est enregistré sous le certificat Cyber PrInterDeposit Digital Numbertection. Enregistrement IDDN n° 5329-1174
Document créé le 29/08/06 02:58, dernière modification le Vendredi 17 Juin 2011, 12:12
Source du document imprimé : http://www.gaudry.be/java-api-rf-java/sql/SQLOutput.html Document affiché 1 fois ce mois de Juin.
St.Gaudry©07.01.02
Outils (masquer)
||
Recherche (afficher)
Recherche :

Utilisateur (masquer)
Apparence (afficher)
Stats (afficher)
15832 documents
452 astuces.
549 niouzes.
3099 definitions.
447 membres.
8115 messages.

Document genere en :
0,64 seconde

Mises à jour :
Mises à jour du site
Citation (masquer)
FACILE : Se dit d'une femme qui a la moralité sexuelle d'un homme.

Pierre Desproges
 
l'infobrol
Nous sommes le Vendredi 01 Juin 2012, 19:44, toutes les heures sont au format GMT+1.00 Heure, heure d'été (+1)