mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-20 19:08:54 +00:00
98 lines
2.9 KiB
XML
98 lines
2.9 KiB
XML
![]() |
<?xml version="1.0" encoding="iso-8859-1"?>
|
||
|
<!-- $Revision: 1.1 $ -->
|
||
|
<reference id="ref.sqlite">
|
||
|
<title>SQLite</title>
|
||
|
<titleabbrev>SQLite</titleabbrev>
|
||
|
<partintro>
|
||
|
&warn.experimental;
|
||
|
<sect1 id="sqlite.partintro">
|
||
|
&reftitle.intro;
|
||
|
<sect2 id="sqlite.intro">
|
||
|
<title>About SQLite</title>
|
||
|
<para>
|
||
|
This is an extension for the SQLite Embeddable SQL Database Engine.
|
||
|
SQLite is a C library that implements an embeddable SQL database engine.
|
||
|
Programs that link with the SQLite library can have SQL database access
|
||
|
without running a separate RDBMS process.
|
||
|
</para>
|
||
|
<para>
|
||
|
SQLite is not a client library used to connect to a big database server.
|
||
|
SQLite is the server. The SQLite library reads and writes directly to and from
|
||
|
the database files on disk.
|
||
|
</para>
|
||
|
<note>
|
||
|
<para>
|
||
|
For further information see the SQLite Website
|
||
|
(<ulink url="http://www.sqlite.org">http://www.sqlite.org</ulink>).
|
||
|
</para>
|
||
|
</note>
|
||
|
</sect2>
|
||
|
<sect2 id="sqlite.install">
|
||
|
<title>Installation</title>
|
||
|
<para>
|
||
|
Read the INSTALL file, which comes with the package. Or just use the PEAR
|
||
|
installer with "pear install sqlite".
|
||
|
SQLite itself is already included, You do not need to install
|
||
|
any additional software.
|
||
|
</para>
|
||
|
<para>
|
||
|
You can download the Windows version of the extension from <ulink
|
||
|
url="http://snaps.php.net/win32/PECL_STABLE/php_sqlite.dll"
|
||
|
>http://snaps.php.net/win32/PECL_STABLE/php_sqlite.dll</ulink>
|
||
|
</para>
|
||
|
</sect2>
|
||
|
<sect2 id="sqlite.contact">
|
||
|
<title>Contact Information</title>
|
||
|
<para>
|
||
|
Any questions about the extension should be asked on one of the
|
||
|
<ulink url="&url.php.support;">PHP Mailing lists</ulink>.
|
||
|
</para>
|
||
|
</sect2>
|
||
|
|
||
|
<sect2 id="sqlite.requirements">
|
||
|
&reftitle.required;
|
||
|
<para>
|
||
|
In order to have these functions available, you must compile PHP with
|
||
|
SQLite support, or load the SQLite extension dynamically from your
|
||
|
php.ini.
|
||
|
</para>
|
||
|
</sect2>
|
||
|
|
||
|
<sect2 id="sqlite.resources">
|
||
|
&reftitle.resources;
|
||
|
<para>
|
||
|
There are two resources used in the SQLite Interface. The first one is the
|
||
|
database connection, the second one the result set.
|
||
|
</para>
|
||
|
</sect2>
|
||
|
|
||
|
&reference.sqlite.constants;
|
||
|
&reference.sqlite.ini;
|
||
|
</sect1>
|
||
|
</partintro>
|
||
|
|
||
|
&reference.sqlite.functions;
|
||
|
|
||
|
</reference>
|
||
|
|
||
|
<!-- 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:"../../../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
|
||
|
-->
|