-
Notifications
You must be signed in to change notification settings - Fork 2
/
IRowSetWriter.xml
109 lines (109 loc) · 6.87 KB
/
IRowSetWriter.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<Type Name="IRowSetWriter" FullName="Javax.Sql.IRowSetWriter">
<TypeSignature Language="C#" Value="public interface IRowSetWriter : Android.Runtime.IJavaObject, IDisposable, Java.Interop.IJavaPeerable" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract beforefieldinit IRowSetWriter implements class Android.Runtime.IJavaObject, class Java.Interop.IJavaPeerable, class System.IDisposable" />
<TypeSignature Language="DocId" Value="T:Javax.Sql.IRowSetWriter" />
<TypeSignature Language="F#" Value="type IRowSetWriter = interface
 interface IJavaObject
 interface IDisposable
 interface IJavaPeerable" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Interfaces>
<Interface>
<InterfaceName>Android.Runtime.IJavaObject</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Interop.IJavaPeerable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("javax/sql/RowSetWriter", "", "Javax.Sql.IRowSetWriterInvoker")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("javax/sql/RowSetWriter", "", "Javax.Sql.IRowSetWriterInvoker")>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="1">
<summary>An object that implements the <c>RowSetWriter</c> interface,
called a <i>writer</i>.</summary>
<remarks>
<para>An object that implements the <c>RowSetWriter</c> interface,
called a <i>writer</i>. A writer may be registered with a <c>RowSet</c>
object that supports the reader/writer paradigm.</para>
<para>If a disconnected <c>RowSet</c> 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's <c>writeData</c> 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.</para>
<para>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.</para>
<para>Added in 1.4.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/javax/sql/RowSetWriter" title="Reference documentation">Java documentation for <code>javax.sql.RowSetWriter</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
<Members>
<Member MemberName="WriteData">
<MemberSignature Language="C#" Value="public bool WriteData (Javax.Sql.IRowSetInternal? caller);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool WriteData(class Javax.Sql.IRowSetInternal caller) cil managed" />
<MemberSignature Language="DocId" Value="M:Javax.Sql.IRowSetWriter.WriteData(Javax.Sql.IRowSetInternal)" />
<MemberSignature Language="F#" Value="abstract member WriteData : Javax.Sql.IRowSetInternal -> bool" Usage="iRowSetWriter.WriteData caller" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("writeData", "(Ljavax/sql/RowSetInternal;)Z", "GetWriteData_Ljavax_sql_RowSetInternal_Handler:Javax.Sql.IRowSetWriterInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("writeData", "(Ljavax/sql/RowSetInternal;)Z", "GetWriteData_Ljavax_sql_RowSetInternal_Handler:Javax.Sql.IRowSetWriterInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="caller" Type="Javax.Sql.IRowSetInternal" />
</Parameters>
<Docs>
<param name="caller">the <c>RowSet</c> object (1) that has implemented the
<c>RowSetInternal</c> interface, (2) with which this writer is
registered, and (3) that called this method internally</param>
<summary>Writes the changes in this <c>RowSetWriter</c> object's
rowset back to the data source from which it got its data.</summary>
<returns>
<c>true</c> if the modified data was written; <c>false</c>
if not, which will be the case if there is a conflict</returns>
<remarks>
<para>Writes the changes in this <c>RowSetWriter</c> object's
rowset back to the data source from which it got its data.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/javax/sql/RowSetWriter#writeData(javax.sql.RowSetInternal)" title="Reference documentation">Java documentation for <code>javax.sql.RowSetWriter.writeData(javax.sql.RowSetInternal)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
<exception cref="T:Java.Sql.SQLException">if a problem occurs accessing the database.
</exception>
</Docs>
</Member>
</Members>
</Type>