reference/oci8/OCI-Lob/flush.xml
b9e6268918813e27972c644897970b0cdbc6f86e
...
...
@@ -1,84 +0,0 @@
1
-
<?xml version="1.0" encoding="utf-8"?>
2
-
<!-- $Revision$ -->
3
-
<refentry xml:id="oci-lob.flush" xmlns="http://docbook.org/ns/docbook">
4
-
<refnamediv>
5
-
<refname>OCI-Lob::flush</refname>
6
-
<refpurpose>Flushes/writes buffer of the LOB to the server</refpurpose>
7
-
</refnamediv>
8
-
9
-
<refsect1 role="description">
10
-
&reftitle.description;
11
-
<methodsynopsis role="oop">
12
-
<type>bool</type><methodname>OCI-Lob::flush</methodname>
13
-
<methodparam choice="opt"><type>int</type><parameter>flag</parameter></methodparam>
14
-
</methodsynopsis>
15
-
<para>
16
-
<function>OCI-Lob::flush</function> actually writes data to the server.
17
-
</para>
18
-
</refsect1>
19
-

20
-
<refsect1 role="parameters">
21
-
&reftitle.parameters;
22
-
<para>
23
-
<variablelist>
24
-
<varlistentry>
25
-
<term><parameter>flag</parameter></term>
26
-
<listitem>
27
-
<para>
28
-
By default, resources are not freed, but using flag
29
-
<constant>OCI_LOB_BUFFER_FREE</constant> you can do it explicitly.
30
-
Be sure you know what you're doing - next read/write operation to the
31
-
same part of LOB will involve a round-trip to the server and initialize
32
-
new buffer resources. It is recommended to use
33
-
<constant>OCI_LOB_BUFFER_FREE</constant> flag only when you are not
34
-
going to work with the LOB anymore.
35
-
</para>
36
-
</listitem>
37
-
</varlistentry>
38
-
</variablelist>
39
-
</para>
40
-
</refsect1>
41
-

42
-
<refsect1 role="returnvalues">
43
-
&reftitle.returnvalues;
44
-
<para>
45
-
&return.success;
46
-
</para>
47
-
<para>
48
-
Returns &false; if buffering was not enabled or an error occurred.
49
-
</para>
50
-
</refsect1>
51
-

52
-
<refsect1 role="seealso">
53
-
&reftitle.seealso;
54
-
<para>
55
-
<simplelist>
56
-
<member><xref linkend="oci-lob.getbuffering" /></member>
57
-
<member><xref linkend="oci-lob.setbuffering" /></member>
58
-
</simplelist>
59
-
</para>
60
-
</refsect1>
61
-

62
-
</refentry>
63
-

64
-
<!-- Keep this comment at the end of the file
65
-
Local variables:
66
-
mode: sgml
67
-
sgml-omittag:t
68
-
sgml-shorttag:t
69
-
sgml-minimize-attributes:nil
70
-
sgml-always-quote-attributes:t
71
-
sgml-indent-step:1
72
-
sgml-indent-data:t
73
-
indent-tabs-mode:nil
74
-
sgml-parent-document:nil
75
-
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
76
-
sgml-exposed-tags:nil
77
-
sgml-local-catalogs:nil
78
-
sgml-local-ecat-files:nil
79
-
End:
80
-
vim600: syn=xml fen fdm=syntax fdl=2 si
81
-
vim: et tw=78 syn=sgml
82
-
vi: ts=1 sw=1
83
-
-->
84
-

85
0