reference/sqlite3/constants.xml
86e6094e86b84a51d00ab217ac50ce8dde33d82a
...
...
@@ -9,7 +9,7 @@
9
9
<varlistentry xml:id="constant.sqlite3-assoc">
10
10
<term>
11
11
<constant>SQLITE3_ASSOC</constant>
12
-
(<type>integer</type>)
12
+
(<type>int</type>)
13
13
</term>
14
14
<listitem>
15
15
<simpara>
...
...
@@ -22,7 +22,7 @@
22
22
<varlistentry xml:id="constant.sqlite3-num">
23
23
<term>
24
24
<constant>SQLITE3_NUM</constant>
25
-
(<type>integer</type>)
25
+
(<type>int</type>)
26
26
</term>
27
27
<listitem>
28
28
<simpara>
...
...
@@ -35,7 +35,7 @@
35
35
<varlistentry xml:id="constant.sqlite3-both">
36
36
<term>
37
37
<constant>SQLITE3_BOTH</constant>
38
-
(<type>integer</type>)
38
+
(<type>int</type>)
39
39
</term>
40
40
<listitem>
41
41
<simpara>
...
...
@@ -48,7 +48,7 @@
48
48
<varlistentry xml:id="constant.sqlite3-integer">
49
49
<term>
50
50
<constant>SQLITE3_INTEGER</constant>
51
-
(<type>integer</type>)
51
+
(<type>int</type>)
52
52
</term>
53
53
<listitem>
54
54
<simpara>
...
...
@@ -59,7 +59,7 @@
59
59
<varlistentry xml:id="constant.sqlite3-float">
60
60
<term>
61
61
<constant>SQLITE3_FLOAT</constant>
62
-
(<type>integer</type>)
62
+
(<type>int</type>)
63
63
</term>
64
64
<listitem>
65
65
<simpara>
...
...
@@ -70,7 +70,7 @@
70
70
<varlistentry xml:id="constant.sqlite3-text">
71
71
<term>
72
72
<constant>SQLITE3_TEXT</constant>
73
-
(<type>integer</type>)
73
+
(<type>int</type>)
74
74
</term>
75
75
<listitem>
76
76
<simpara>
...
...
@@ -81,7 +81,7 @@
81
81
<varlistentry xml:id="constant.sqlite3-blob">
82
82
<term>
83
83
<constant>SQLITE3_BLOB</constant>
84
-
(<type>integer</type>)
84
+
(<type>int</type>)
85
85
</term>
86
86
<listitem>
87
87
<simpara>
...
...
@@ -92,7 +92,7 @@
92
92
<varlistentry xml:id="constant.sqlite3-null">
93
93
<term>
94
94
<constant>SQLITE3_NULL</constant>
95
-
(<type>integer</type>)
95
+
(<type>int</type>)
96
96
</term>
97
97
<listitem>
98
98
<simpara>
...
...
@@ -103,7 +103,7 @@
103
103
<varlistentry xml:id="constant.sqlite3-open-readonly">
104
104
<term>
105
105
<constant>SQLITE3_OPEN_READONLY</constant>
106
-
(<type>integer</type>)
106
+
(<type>int</type>)
107
107
</term>
108
108
<listitem>
109
109
<simpara>
...
...
@@ -114,7 +114,7 @@
114
114
<varlistentry xml:id="constant.sqlite3-open-readwrite">
115
115
<term>
116
116
<constant>SQLITE3_OPEN_READWRITE</constant>
117
-
(<type>integer</type>)
117
+
(<type>int</type>)
118
118
</term>
119
119
<listitem>
120
120
<simpara>
...
...
@@ -125,7 +125,7 @@
125
125
<varlistentry xml:id="constant.sqlite3-open-create">
126
126
<term>
127
127
<constant>SQLITE3_OPEN_CREATE</constant>
128
-
(<type>integer</type>)
128
+
(<type>int</type>)
129
129
</term>
130
130
<listitem>
131
131
<simpara>
...
...
@@ -134,6 +134,19 @@
134
134
</simpara>
135
135
</listitem>
136
136
</varlistentry>
137
+
<varlistentry xml:id="constant.sqlite3-deterministic">
138
+
<term>
139
+
<constant>SQLITE3_DETERMINISTIC</constant>
140
+
(<type>int</type>)
141
+
</term>
142
+
<listitem>
143
+
<simpara>
144
+
Specifies that a function created with <function>SQLite3::createFunction</function>
145
+
is deterministic, i.e. it always returns the same result given the same inputs within
146
+
a single SQL statement. (Available as of PHP 7.1.4.)
147
+
</simpara>
148
+
</listitem>
149
+
</varlistentry>
137
150
</variablelist>
138
151
</para>
139
152
</appendix>
140
153