-
- All Known Subinterfaces:
- TransactionalWriter, XmlWriter
public interface RowSetWriter
An object that implements theRowSetWriter
interface, called a writer. A writer may be registered with aRowSet
object that supports the reader/writer paradigm.If a disconnected
RowSet
object modifies some of its data, and it has a writer associated with it, it may be implemented so that it calls on the writer'swriteData
method internally to write the updates back to the data source. In order to do this, the writer must first establish a connection with the rowset's data source.If the data to be updated has already been changed in the data source, there is a conflict, in which case the writer will not write the changes to the data source. The algorithm the writer uses for preventing or limiting conflicts depends entirely on its implementation.
- Since:
- 1.4
-
-
Method Summary
Methods Modifier and Type Method and Description boolean
writeData(RowSetInternal caller)
Writes the changes in thisRowSetWriter
object's rowset back to the data source from which it got its data.
-
-
-
Method Detail
-
writeData
boolean writeData(RowSetInternal caller) throws SQLException
Writes the changes in thisRowSetWriter
object's rowset back to the data source from which it got its data.- Parameters:
caller
- theRowSet
object (1) that has implemented theRowSetInternal
interface, (2) with which this writer is registered, and (3) that called this method internally- Returns:
true
if the modified data was written;false
if not, which will be the case if there is a conflict- Throws:
SQLException
- if a database access error occurs
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
17/11/2024 17:12:17 Cette version de la page est en cache (à la date du 17/11/2024 17:12:17) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 29/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/sql/rowsetwriter.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.