Path: blob/master/src/java.sql/share/classes/javax/sql/RowSetWriter.java
41152 views
/*1* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package javax.sql;2627import java.sql.*;2829/**30* An object that implements the {@code RowSetWriter} interface,31* called a <i>writer</i>. A writer may be registered with a {@code RowSet}32* object that supports the reader/writer paradigm.33* <P>34* If a disconnected {@code RowSet} object modifies some of its data,35* and it has a writer associated with it, it may be implemented so that it36* calls on the writer's {@code writeData} method internally37* to write the updates back to the data source. In order to do this, the writer38* must first establish a connection with the rowset's data source.39* <P>40* If the data to be updated has already been changed in the data source, there41* is a conflict, in which case the writer will not write42* the changes to the data source. The algorithm the writer uses for preventing43* or limiting conflicts depends entirely on its implementation.44*45* @since 1.446*/4748public interface RowSetWriter {4950/**51* Writes the changes in this {@code RowSetWriter} object's52* rowset back to the data source from which it got its data.53*54* @param caller the {@code RowSet} object (1) that has implemented the55* {@code RowSetInternal} interface, (2) with which this writer is56* registered, and (3) that called this method internally57* @return {@code true} if the modified data was written; {@code false}58* if not, which will be the case if there is a conflict59* @throws SQLException if a database access error occurs60*/61boolean writeData(RowSetInternal caller) throws SQLException;6263}646566