reference/sqlite3/sqlite3/open.xml
855bfee2f3db70d7dbb4c60c7c4a4efa567f1c60
...
...
@@ -1,6 +1,5 @@
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<!-- $Revision$ -->
3
-

4
3
<refentry xml:id="sqlite3.open" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
5
4
<refnamediv>
6
5
<refname>SQLite3::open</refname>
...
...
@@ -9,11 +8,11 @@
9
8

10
9
<refsect1 role="description">
11
10
&reftitle.description;
12
-
<methodsynopsis>
11
+
<methodsynopsis role="SQLite3">
13
12
<modifier>public</modifier> <type>void</type><methodname>SQLite3::open</methodname>
14
13
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
15
14
<methodparam choice="opt"><type>int</type><parameter>flags</parameter><initializer>SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE</initializer></methodparam>
16
-
<methodparam choice="opt"><type>string</type><parameter>encryption_key</parameter></methodparam>
15
+
<methodparam choice="opt"><type>string</type><parameter>encryptionKey</parameter><initializer>""</initializer></methodparam>
17
16
</methodsynopsis>
18
17
<para>
19
18
Opens an SQLite 3 Database. If the build includes encryption, then it will
...
...
@@ -63,11 +62,12 @@
63
62
</listitem>
64
63
</varlistentry>
65
64
<varlistentry>
66
-
<term><parameter>encryption_key</parameter></term>
65
+
<term><parameter>encryptionKey</parameter></term>
67
66
<listitem>
68
67
<para>
69
68
An optional encryption key used when encrypting and decrypting an
70
-
SQLite database.
69
+
SQLite database. If the SQLite encryption module is not installed,
70
+
this parameter will have no effect.
71
71
</para>
72
72
</listitem>
73
73
</varlistentry>
...
...
@@ -118,7 +118,6 @@ var_dump($result->fetchArray());
118
118
</refsect1>
119
119

120
120
</refentry>
121
-

122
121
<!-- Keep this comment at the end of the file
123
122
Local variables:
124
123
mode: sgml
125
124