2003-06-20 17:31:55 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2003-06-20 18:26:30 +00:00
|
|
|
<!-- $Revision: 1.2 $ -->
|
2003-06-20 17:31:55 +00:00
|
|
|
<reference id="ref.sqlite">
|
|
|
|
<title>SQLite</title>
|
|
|
|
<titleabbrev>SQLite</titleabbrev>
|
2003-06-20 18:26:30 +00:00
|
|
|
|
2003-06-20 17:31:55 +00:00
|
|
|
<partintro>
|
|
|
|
&warn.experimental;
|
2003-06-20 18:26:30 +00:00
|
|
|
<section id="sqlite.intro">
|
|
|
|
&reftitle.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>
|
2003-06-20 17:31:55 +00:00
|
|
|
<para>
|
2003-06-20 18:26:30 +00:00
|
|
|
For further information see the SQLite Website
|
|
|
|
(<ulink url="http://www.sqlite.org">http://www.sqlite.org</ulink>).
|
2003-06-20 17:31:55 +00:00
|
|
|
</para>
|
2003-06-20 18:26:30 +00:00
|
|
|
</note>
|
|
|
|
</section>
|
2003-06-20 17:31:55 +00:00
|
|
|
|
2003-06-20 18:26:30 +00:00
|
|
|
<section 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>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section 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>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section 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>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section 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>
|
|
|
|
</section>
|
2003-06-20 17:31:55 +00:00
|
|
|
|
2003-06-20 18:26:30 +00:00
|
|
|
&reference.sqlite.constants;
|
|
|
|
&reference.sqlite.ini;
|
|
|
|
</partintro>
|
2003-06-20 17:31:55 +00:00
|
|
|
|
2003-06-20 18:26:30 +00:00
|
|
|
&reference.sqlite.functions;
|
2003-06-20 17:31:55 +00:00
|
|
|
|
2003-06-20 18:26:30 +00:00
|
|
|
</reference>
|
2003-06-20 17:31:55 +00:00
|
|
|
|
|
|
|
<!-- 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
|
|
|
|
-->
|