2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 09:02:41 +00:00
|
|
|
<!-- $Revision$ -->
|
2008-07-03 03:06:58 +00:00
|
|
|
|
|
|
|
<appendix xml:id="sqlite3.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
|
|
&reftitle.constants;
|
|
|
|
&extension.constants;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.sqlite3-assoc">
|
2008-07-03 03:06:58 +00:00
|
|
|
<term>
|
|
|
|
<constant>SQLITE3_ASSOC</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2009-08-11 13:29:18 +00:00
|
|
|
Specifies that the <methodname>Sqlite3Result::fetchArray</methodname>
|
|
|
|
method shall return an array indexed by column name as returned in the
|
|
|
|
corresponding result set.
|
2008-07-03 03:06:58 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.sqlite3-num">
|
2008-07-03 03:06:58 +00:00
|
|
|
<term>
|
|
|
|
<constant>SQLITE3_NUM</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2009-08-11 13:29:18 +00:00
|
|
|
Specifies that the <methodname>Sqlite3Result::fetchArray</methodname>
|
|
|
|
method shall return an array indexed by column number as returned in the
|
2008-07-03 03:06:58 +00:00
|
|
|
corresponding result set, starting at column 0.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.sqlite3-both">
|
2008-07-03 03:06:58 +00:00
|
|
|
<term>
|
|
|
|
<constant>SQLITE3_BOTH</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2009-08-11 13:29:18 +00:00
|
|
|
Specifies that the <methodname>Sqlite3Result::fetchArray</methodname>
|
|
|
|
method shall return an array indexed by both column name and number as
|
|
|
|
returned in the corresponding result set, starting at column 0.
|
2008-07-03 03:06:58 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.sqlite3-integer">
|
2008-07-03 03:06:58 +00:00
|
|
|
<term>
|
|
|
|
<constant>SQLITE3_INTEGER</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Represents the SQLite3 INTEGER storage class.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.sqlite3-float">
|
2008-07-03 03:06:58 +00:00
|
|
|
<term>
|
|
|
|
<constant>SQLITE3_FLOAT</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Represents the SQLite3 REAL (FLOAT) storage class.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.sqlite3-text">
|
2008-07-03 03:06:58 +00:00
|
|
|
<term>
|
|
|
|
<constant>SQLITE3_TEXT</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Represents the SQLite3 TEXT storage class.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.sqlite3-blob">
|
2008-07-03 03:06:58 +00:00
|
|
|
<term>
|
|
|
|
<constant>SQLITE3_BLOB</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Represents the SQLite3 BLOB storage class.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.sqlite3-null">
|
2008-07-03 03:06:58 +00:00
|
|
|
<term>
|
|
|
|
<constant>SQLITE3_NULL</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Represents the SQLite3 NULL storage class.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.sqlite3-open-readonly">
|
2008-07-03 03:06:58 +00:00
|
|
|
<term>
|
|
|
|
<constant>SQLITE3_OPEN_READONLY</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Specifies that the SQLite3 database be opened for reading only.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.sqlite3-open-readwrite">
|
2008-07-03 03:06:58 +00:00
|
|
|
<term>
|
|
|
|
<constant>SQLITE3_OPEN_READWRITE</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Specifies that the SQLite3 database be opened for reading and writing.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.sqlite3-open-create">
|
2008-07-03 03:06:58 +00:00
|
|
|
<term>
|
|
|
|
<constant>SQLITE3_OPEN_CREATE</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Specifies that the SQLite3 database be created if it does not already
|
|
|
|
exist.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2017-03-17 14:07:36 +00:00
|
|
|
<varlistentry xml:id="constant.sqlite3-deterministic">
|
|
|
|
<term>
|
|
|
|
<constant>SQLITE3_DETERMINISTIC</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Specifies that a function created with <function>SQLite3::createFunction</function>
|
|
|
|
is deterministic, i.e. it always returns the same result given the same inputs within
|
|
|
|
a single SQL statement. (Available as of PHP 7.1.4.)
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2008-07-03 03:06:58 +00:00
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</appendix>
|
|
|
|
|
|
|
|
<!-- 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
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2008-07-03 03:06:58 +00:00
|
|
|
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
|
|
|
|
-->
|
|
|
|
|