-
Notifications
You must be signed in to change notification settings - Fork 790
/
Copy pathcubrid-get-db-parameter.xml
267 lines (242 loc) · 7.98 KB
/
cubrid-get-db-parameter.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<refentry xml:id="function.cubrid-get-db-parameter" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>cubrid_get_db_parameter</refname>
<refpurpose>Returns the CUBRID database parameters</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>array</type><methodname>cubrid_get_db_parameter</methodname>
<methodparam><type>resource</type><parameter>conn_identifier</parameter></methodparam>
</methodsynopsis>
<para>
This function returns the CUBRID database parameters,&return.falseforfailure;.
It returns an associative array with the values for the following parameters:
</para>
<para>
<simplelist>
<member><constant>PARAM_ISOLATION_LEVEL</constant></member>
<member><constant>PARAM_LOCK_TIMEOUT</constant></member>
<member><constant>PARAM_MAX_STRING_LENGTH</constant></member>
<member><constant>PARAM_AUTO_COMMIT</constant></member>
</simplelist>
</para>
<para>
<table>
<title>Database parameters</title>
<tgroup cols="2">
<thead>
<row>
<entry>Parameter</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>PARAM_ISOLATION_LEVEL</entry>
<entry>The transaction isolation level.</entry>
</row>
<row>
<entry>LOCK_TIMEOUT</entry>
<entry>CUBRID provides the lock timeout feature, which sets the waiting
time (in seconds) for the lock until the transaction lock setting is
allowed. The default value of the lock_timeout_in_secs parameter is
-1, which means the application client will wait indefinitely until
the transaction lock is allowed.
</entry>
</row>
<row>
<entry>PARAM_AUTO_COMMIT</entry>
<entry>In CUBRID PHP, auto-commit mode is disabled by default for
transaction management. It can be set by using
<function>cubrid_set_autocommit</function>.
</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
<para>
The following table shows the isolation levels from 1 to 6. It consists of
table schema (row) and isolation level:
<table>
<title>Levels of Isolation Supported by CUBRID</title>
<tgroup cols="2">
<thead>
<row>
<entry>Name</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>SERIALIZABLE (6)</entry>
<entry>In this isolation level, problems concerning concurrency (e.g.
dirty read, non-repeatable read, phantom read, etc.) do not
occur.</entry>
</row>
<row>
<entry>REPEATABLE READ CLASS with REPEATABLE READ INSTANCES (5)</entry>
<entry>Another transaction T2 cannot update the schema of table A while
transaction T1 is viewing table A.
Transaction T1 may experience phantom read for the record R that was
inserted by another transaction T2 when it is repeatedly retrieving a
specific record.</entry>
</row>
<row>
<entry>REPEATABLE READ CLASS with READ COMMITTED INSTANCES (or CURSOR STABILITY) (4)</entry>
<entry>Another transaction T2 cannot update the schema of table A while
transaction T1 is viewing table A.
Transaction T1 may experience R read (non-repeatable read) that was
updated and committed by another transaction T2 when it is repeatedly
retrieving the record R.</entry>
</row>
<row>
<entry>REPEATABLE READ CLASS with READ UNCOMMITTED INSTANCES (3)</entry>
<entry>Default isolation level. Another transaction T2 cannot update
the schema of table A while transaction T1 is viewing table A.
Transaction T1 may experience R' read (dirty read) for the record that
was updated but not committed by another transaction T2.</entry>
</row>
<row>
<entry>READ COMMITTED CLASS with READ COMMITTED INSTANCES (2)</entry>
<entry>Transaction T1 may experience A' read (non-repeatable read) for
the table that was updated and committed by another transaction T2
while it is viewing table A repeatedly. Transaction T1 may experience
R' read (non-repeatable read) for the record that was updated and
committed by another transaction T2 while it is retrieving the record
R repeatedly.</entry>
</row>
<row>
<entry>READ COMMITTED CLASS with READ UNCOMMITTED INSTANCES (1)</entry>
<entry>Transaction T1 may experience A' read (non-repeatable read) for
the table that was updated and committed by another transaction T2
while it is repeatedly viewing table A. Transaction T1 may experience
R' read (dirty read) for the record that was updated but not committed
by another transaction T2.</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>conn_identifier</parameter></term>
<listitem><para>
The CUBRID connection. If the connection identifier is not specified,
the last link opened by <function>cubrid_connect</function> is assumed.
</para></listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
An associative array with CUBRID database parameters; on success,&return.falseforfailure;.
</para>
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
<para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>8.4.0</entry>
<entry>
Change LOCK_TIMEOUT to PARAM_LOCK_TIMEOUT, and MAX_STRING_LENGTH to
PARAM_MAX_STRING_LENGTH in result.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<example>
<title><function>cubrid_get_db_parameter</function> example</title>
<programlisting role="php">
<![CDATA[
<?php
printf("%-30s %s\n", "CUBRID PHP Version:", cubrid_version());
printf("\n");
$conn = cubrid_connect("localhost", 33088, "demodb");
if (!$conn) {
die('Connect Error ('. cubrid_error_code() .')' . cubrid_error_msg());
}
$db_params = cubrid_get_db_parameter($conn);
while (list($param_name, $param_value) = each($db_params)) {
printf("%-30s %s\n", $param_name, $param_value);
}
printf("\n");
$server_info = cubrid_get_server_info($conn);
$client_info = cubrid_get_client_info();
printf("%-30s %s\n", "Server Info:", $server_info);
printf("%-30s %s\n", "Client Info:", $client_info);
printf("\n");
$charset = cubrid_get_charset($conn);
printf("%-30s %s\n", "CUBRID Charset:", $charset);
cubrid_disconnect($conn);
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
CUBRID PHP Version: 9.1.0.0001
PARAM_ISOLATION_LEVEL 3
LOCK_TIMEOUT -1
MAX_STRING_LENGTH 1073741823
PARAM_AUTO_COMMIT 1
Server Info: 9.1.0.0212
Client Info: 9.1.0
CUBRID Charset: iso8859-1
]]>
</screen>
</example>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>cubrid_set_db_parameter</function></member>
<member><function>cubrid_get_autocommit</function></member>
</simplelist>
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->