mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Fix #74397: Filename can also be empty string for in-memory db
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@342307 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
8aee21b408
commit
d0a57fa419
1 changed files with 26 additions and 0 deletions
|
@ -33,6 +33,9 @@
|
|||
<listitem>
|
||||
<para>
|
||||
Path to the SQLite database, or <literal>:memory:</literal> to use in-memory database.
|
||||
If <parameter>filename</parameter> is an empty string, then a private, temporary on-disk
|
||||
database will be created. This private database will be automatically
|
||||
deleted as soon as the database connection is closed.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -94,6 +97,29 @@
|
|||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="changelog">
|
||||
&reftitle.changelog;
|
||||
<informaltable>
|
||||
<tgroup cols="2">
|
||||
<thead>
|
||||
<row>
|
||||
<entry>&Version;</entry>
|
||||
<entry>&Description;</entry>
|
||||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>7.0.10</entry>
|
||||
<entry>
|
||||
The <parameter>filename</parameter> can now be empty to use a private,
|
||||
temporary on-disk database.
|
||||
</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</informaltable>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="examples">
|
||||
&reftitle.examples;
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue