Lines Matching refs:engine

18 …function func_mysqli_stmt_get_result($link, $engine, $bind_type, $sql_type, $bind_value, $offset, …
25 …sprintf("CREATE TABLE test(id INT, label %s, PRIMARY KEY(id)) ENGINE = %s", $sql_type, $engine))) {
119 func_mysqli_stmt_get_result($link, $engine, "i", "TINYINT", -11, 20);
120 func_mysqli_stmt_get_result($link, $engine, "i", "TINYINT", NULL, 40);
121 func_mysqli_stmt_get_result($link, $engine, "i", "TINYINT UNSIGNED", 1, 60);
122 func_mysqli_stmt_get_result($link, $engine, "i", "TINYINT UNSIGNED", NULL, 80);
124 func_mysqli_stmt_get_result($link, $engine, "i", "BOOL", 1, 100);
125 func_mysqli_stmt_get_result($link, $engine, "i", "BOOL", NULL, 120);
126 func_mysqli_stmt_get_result($link, $engine, "i", "BOOLEAN", 0, 140);
127 func_mysqli_stmt_get_result($link, $engine, "i", "BOOLEAN", NULL, 160);
129 func_mysqli_stmt_get_result($link, $engine, "i", "SMALLINT", -32768, 180);
130 func_mysqli_stmt_get_result($link, $engine, "i", "SMALLINT", 32767, 200);
131 func_mysqli_stmt_get_result($link, $engine, "i", "SMALLINT", NULL, 220);
132 func_mysqli_stmt_get_result($link, $engine, "i", "SMALLINT UNSIGNED", 65535, 240);
133 func_mysqli_stmt_get_result($link, $engine, "i", "SMALLINT UNSIGNED", NULL, 260);
135 func_mysqli_stmt_get_result($link, $engine, "d", "MEDIUMINT", -8388608, 280, "integer");
136 func_mysqli_stmt_get_result($link, $engine, "d", "MEDIUMINT", 8388607, 300, "integer");
137 func_mysqli_stmt_get_result($link, $engine, "d", "MEDIUMINT", NULL, 320);
138 … func_mysqli_stmt_get_result($link, $engine, "d", "MEDIUMINT UNSIGNED", 16777215, 340, "integer");
139 func_mysqli_stmt_get_result($link, $engine, "d", "MEDIUMINT UNSIGNED", NULL, 360);
141 …func_mysqli_stmt_get_result($link, $engine, "i", "INTEGER", (defined("PHP_INT_MAX")) ? max(-1 * PH…
142 func_mysqli_stmt_get_result($link, $engine, "i", "INTEGER", -2147483647, 400, "integer");
143 …func_mysqli_stmt_get_result($link, $engine, "i", "INTEGER", (defined("PHP_INT_MAX")) ? min(2147483…
144 func_mysqli_stmt_get_result($link, $engine, "i", "INTEGER", NULL, 440);
145 …func_mysqli_stmt_get_result($link, $engine, "i", "INTEGER UNSIGNED", (defined("PHP_INT_MAX")) ? mi…
146 …func_mysqli_stmt_get_result($link, $engine, "i", "INTEGER UNSIGNED", 4294967295, 480, (defined("PH…
147 func_mysqli_stmt_get_result($link, $engine, "i", "INTEGER UNSIGNED", NULL, 500);
150 func_mysqli_stmt_get_result($link, $engine, "i", "BIGINT", -9223372036854775808, 520);
151 func_mysqli_stmt_get_result($link, $engine, "i", "BIGINT UNSIGNED", 18446744073709551615, 560);
153 func_mysqli_stmt_get_result($link, $engine, "i", "BIGINT", NULL, 540);
154 func_mysqli_stmt_get_result($link, $engine, "i", "BIGINT UNSIGNED", NULL, 580);
155 func_mysqli_stmt_get_result($link, $engine, "i", "BIGINT", -1, 1780);
156 func_mysqli_stmt_get_result($link, $engine, "i", "BIGINT UNSIGNED", 1, 1800);
157 func_mysqli_stmt_get_result($link, $engine, "i", "BIGINT", -1 * PHP_INT_MAX + 1, 1820);
158 func_mysqli_stmt_get_result($link, $engine, "i", "BIGINT UNSIGNED", PHP_INT_MAX, 1840);
159 … func_mysqli_stmt_get_result($link, $engine, "s", "BIGINT UNSIGNED", "18446744073709551615", 1860);
160 func_mysqli_stmt_get_result($link, $engine, "s", "BIGINT", "-9223372036854775808", 1880);
162 func_mysqli_stmt_get_result($link, $engine, "d", "FLOAT", -9223372036854775808 - 1.1, 600);
163 func_mysqli_stmt_get_result($link, $engine, "d", "FLOAT", NULL, 620);
164 …func_mysqli_stmt_get_result($link, $engine, "d", "FLOAT UNSIGNED", 18446744073709551615 + 1.1, 640…
165 func_mysqli_stmt_get_result($link, $engine, "d", "FLOAT UNSIGNED ", NULL, 660);
169 func_mysqli_stmt_get_result($link, $engine, "d", "DOUBLE(10,2)", $tmp, 680, "string");
170 func_mysqli_stmt_get_result($link, $engine, "d", "DOUBLE(10,2)", NULL, 700);
172 func_mysqli_stmt_get_result($link, $engine, "d", "DOUBLE(10,2) UNSIGNED", $tmp , 720, "string");
173 func_mysqli_stmt_get_result($link, $engine, "d", "DOUBLE(10,2) UNSIGNED", NULL, 740);
175 func_mysqli_stmt_get_result($link, $engine, "d", "DECIMAL(10,2)", $tmp, 760, "string");
176 func_mysqli_stmt_get_result($link, $engine, "d", "DECIMAL(10,2)", NULL, 780);
178 func_mysqli_stmt_get_result($link, $engine, "d", "DECIMAL(10,2)", $tmp, 800, "string");
179 func_mysqli_stmt_get_result($link, $engine, "d", "DECIMAL(10,2)", NULL, 820);
182 func_mysqli_stmt_get_result($link, $engine, "s", "DATE", @date('Y-m-d'), 840);
183 func_mysqli_stmt_get_result($link, $engine, "s", "DATE NOT NULL", @date('Y-m-d'), 860);
184 func_mysqli_stmt_get_result($link, $engine, "s", "DATE", NULL, 880);
186 func_mysqli_stmt_get_result($link, $engine, "s", "DATETIME", @date('Y-m-d H:i:s'), 900);
187 … func_mysqli_stmt_get_result($link, $engine, "s", "DATETIME NOT NULL", @date('Y-m-d H:i:s'), 920);
188 func_mysqli_stmt_get_result($link, $engine, "s", "DATETIME", NULL, 940);
190 func_mysqli_stmt_get_result($link, $engine, "s", "TIMESTAMP", @date('Y-m-d H:i:s'), 960);
192 func_mysqli_stmt_get_result($link, $engine, "s", "TIME", @date('H:i:s'), 980);
193 func_mysqli_stmt_get_result($link, $engine, "s", "TIME NOT NULL", @date('H:i:s'), 1000);
194 func_mysqli_stmt_get_result($link, $engine, "s", "TIME", NULL, 1020);
197 func_mysqli_stmt_get_result($link, $engine, "s", "YEAR", $tmp, 1040, "integer");
198 func_mysqli_stmt_get_result($link, $engine, "s", "YEAR NOT NULL", $tmp, 1060, "integer");
199 func_mysqli_stmt_get_result($link, $engine, "s", "YEAR", NULL, 1080);
202 func_mysqli_stmt_get_result($link, $engine, "s", "CHAR(1)", "a", 1110, 'string');
203 func_mysqli_stmt_get_result($link, $engine, "s", "CHAR(255)", $string255, 1120, 'string');
204 func_mysqli_stmt_get_result($link, $engine, "s", "CHAR(1) NOT NULL", "a", 1140, 'string');
205 func_mysqli_stmt_get_result($link, $engine, "s", "CHAR(1)", NULL, 1160);
208 func_mysqli_stmt_get_result($link, $engine, "s", "VARCHAR(1)", "a", 1180, 'string');
209 func_mysqli_stmt_get_result($link, $engine, "s", "VARCHAR(255)", $string255, 1200, 'string');
210 func_mysqli_stmt_get_result($link, $engine, "s", "VARCHAR(65635)", $string65k, 1220, 'string');
211 func_mysqli_stmt_get_result($link, $engine, "s", "VARCHAR(1) NOT NULL", "a", 1240, 'string');
212 func_mysqli_stmt_get_result($link, $engine, "s", "VARCHAR(1)", NULL, 1260);
214 func_mysqli_stmt_get_result($link, $engine, "s", "BINARY(1)", "a", 1280);
215 func_mysqli_stmt_get_result($link, $engine, "s", "BINARY(1)", chr(0), 1300);
216 func_mysqli_stmt_get_result($link, $engine, "s", "BINARY(1) NOT NULL", "b", 1320);
217 func_mysqli_stmt_get_result($link, $engine, "s", "BINARY(1)", NULL, 1340);
219 func_mysqli_stmt_get_result($link, $engine, "s", "VARBINARY(1)", "a", 1360);
220 func_mysqli_stmt_get_result($link, $engine, "s", "VARBINARY(1)", chr(0), 1380);
221 func_mysqli_stmt_get_result($link, $engine, "s", "VARBINARY(1) NOT NULL", "b", 1400);
222 func_mysqli_stmt_get_result($link, $engine, "s", "VARBINARY(1)", NULL, 1420);
224 func_mysqli_stmt_get_result($link, $engine, "s", "TINYBLOB", "a", 1440);
225 func_mysqli_stmt_get_result($link, $engine, "s", "TINYBLOB", chr(0), 1460);
226 func_mysqli_stmt_get_result($link, $engine, "s", "TINYBLOB NOT NULL", "b", 1480);
227 func_mysqli_stmt_get_result($link, $engine, "s", "TINYBLOB", NULL, 1500);
229 func_mysqli_stmt_get_result($link, $engine, "s", "TINYTEXT", "a", 1520, 'string');
230 func_mysqli_stmt_get_result($link, $engine, "s", "TINYTEXT NOT NULL", "a", 1540, 'string');
231 func_mysqli_stmt_get_result($link, $engine, "s", "TINYTEXT", NULL, 1560, 'string');
235 func_mysqli_stmt_get_result($link, $engine, "b", "BLOB", "", 1580);
236 func_mysqli_stmt_get_result($link, $engine, "b", "TEXT", "", 1600, 'string');
237 func_mysqli_stmt_get_result($link, $engine, "b", "MEDIUMBLOB", "", 1620);
238 func_mysqli_stmt_get_result($link, $engine, "b", "MEDIUMTEXT", "", 1640, 'string');
241 func_mysqli_stmt_get_result($link, $engine, "b", "LONGBLOB", "", 1660);
242 func_mysqli_stmt_get_result($link, $engine, "b", "LONGTEXT", "", 1680, 'string');
244 func_mysqli_stmt_get_result($link, $engine, "s", "ENUM('a', 'b')", "a", 1700, 'string');
245 func_mysqli_stmt_get_result($link, $engine, "s", "ENUM('a', 'b')", NULL, 1720, 'string');
246 func_mysqli_stmt_get_result($link, $engine, "s", "SET('a', 'b')", "a", 1740, 'string');
247 func_mysqli_stmt_get_result($link, $engine, "s", "SET('a', 'b')", NULL, 1760, 'string');