Lines Matching refs:s

19 		printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
22 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
28 printf("[002a] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
31 printf("[002b] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
41 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
44 printf("[004] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
47 printf("[005] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
50 printf("[006] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
53 printf("[007] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
56 printf("[008] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
68 printf("[%04d] [%d] %s\n", $offset, mysqli_errno($link), mysqli_error($link));
72 …ysqli_query($link, sprintf("CREATE TABLE test(id INT, label %s, PRIMARY KEY(id)) ENGINE = %s", $sq…
78 printf("[%04d] [%d] %s\n", $offset + 1, mysqli_errno($link), mysqli_error($link));
83 printf("[%04d] [%d] %s\n", $offset + 2, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
89 printf("[%04d] [%d] %s\n", $offset + 3, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
96 … printf("[%04d] [%d] %s\n", $offset + 3 + $id, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
106 printf("[%04d] [%d] %s\n", $offset + 7, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
112 printf("[%04d] [%d] %s\n", $offset + 8, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
121 printf("[%04d] [%d] %s\n", $offset + 9, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
131 printf("[%04d] [%d] Expecting %s/'%s' [type hint = %s], got %s/'%s'\n",
143 printf("[%04d] [%d] %s, expecting 3 results, got only %d results\n",
203 func_mysqli_stmt_bind_result($link, $engine, "s", "BIGINT UNSIGNED", "18446744073709551615", 1860);
204 func_mysqli_stmt_bind_result($link, $engine, "s", "BIGINT", "-9223372036854775808", 1880);
226 func_mysqli_stmt_bind_result($link, $engine, "s", "DATE", @date('Y-m-d'), 840);
227 func_mysqli_stmt_bind_result($link, $engine, "s", "DATE NOT NULL", @date('Y-m-d'), 860);
228 func_mysqli_stmt_bind_result($link, $engine, "s", "DATE", NULL, 880);
230 func_mysqli_stmt_bind_result($link, $engine, "s", "DATETIME", @date('Y-m-d H:i:s'), 900);
231 func_mysqli_stmt_bind_result($link, $engine, "s", "DATETIME NOT NULL", @date('Y-m-d H:i:s'), 920);
232 func_mysqli_stmt_bind_result($link, $engine, "s", "DATETIME", NULL, 940);
234 func_mysqli_stmt_bind_result($link, $engine, "s", "TIMESTAMP", @date('Y-m-d H:i:s'), 960);
236 func_mysqli_stmt_bind_result($link, $engine, "s", "TIME", @date('H:i:s'), 980);
237 func_mysqli_stmt_bind_result($link, $engine, "s", "TIME NOT NULL", @date('H:i:s'), 1000);
238 func_mysqli_stmt_bind_result($link, $engine, "s", "TIME", NULL, 1020);
241 func_mysqli_stmt_bind_result($link, $engine, "s", "YEAR", $tmp, 1040, "integer");
242 func_mysqli_stmt_bind_result($link, $engine, "s", "YEAR NOT NULL", $tmp, 1060, "integer");
243 func_mysqli_stmt_bind_result($link, $engine, "s", "YEAR", NULL, 1080);
246 func_mysqli_stmt_bind_result($link, $engine, "s", "CHAR(1)", "a", 1110, $hint_str_or_unicode);
247 …func_mysqli_stmt_bind_result($link, $engine, "s", "CHAR(255)", $string255, 1120, $hint_str_or_unic…
248 …func_mysqli_stmt_bind_result($link, $engine, "s", "CHAR(1) NOT NULL", "a", 1140, $hint_str_or_unic…
249 func_mysqli_stmt_bind_result($link, $engine, "s", "CHAR(1)", NULL, 1160);
252 func_mysqli_stmt_bind_result($link, $engine, "s", "VARCHAR(1)", "a", 1180, $hint_str_or_unicode);
253 …func_mysqli_stmt_bind_result($link, $engine, "s", "VARCHAR(255)", $string255, 1200, $hint_str_or_u…
254 …func_mysqli_stmt_bind_result($link, $engine, "s", "VARCHAR(65635)", $string65k, 1220, $hint_str_or…
255 …func_mysqli_stmt_bind_result($link, $engine, "s", "VARCHAR(1) NOT NULL", "a", 1240, $hint_str_or_u…
256 func_mysqli_stmt_bind_result($link, $engine, "s", "VARCHAR(1)", NULL, 1260);
258 func_mysqli_stmt_bind_result($link, $engine, "s", "BINARY(1)", "a", 1280);
259 func_mysqli_stmt_bind_result($link, $engine, "s", "BINARY(1)", chr(0), 1300);
260 func_mysqli_stmt_bind_result($link, $engine, "s", "BINARY(1) NOT NULL", "b", 1320);
261 func_mysqli_stmt_bind_result($link, $engine, "s", "BINARY(1)", NULL, 1340);
263 func_mysqli_stmt_bind_result($link, $engine, "s", "VARBINARY(1)", "a", 1360);
264 func_mysqli_stmt_bind_result($link, $engine, "s", "VARBINARY(1)", chr(0), 1380);
265 func_mysqli_stmt_bind_result($link, $engine, "s", "VARBINARY(1) NOT NULL", "b", 1400);
266 func_mysqli_stmt_bind_result($link, $engine, "s", "VARBINARY(1)", NULL, 1420);
268 func_mysqli_stmt_bind_result($link, $engine, "s", "TINYBLOB", "a", 1440);
269 func_mysqli_stmt_bind_result($link, $engine, "s", "TINYBLOB", chr(0), 1460);
270 func_mysqli_stmt_bind_result($link, $engine, "s", "TINYBLOB NOT NULL", "b", 1480);
271 func_mysqli_stmt_bind_result($link, $engine, "s", "TINYBLOB", NULL, 1500);
273 func_mysqli_stmt_bind_result($link, $engine, "s", "TINYTEXT", "a", 1520, $hint_str_or_unicode);
274 …func_mysqli_stmt_bind_result($link, $engine, "s", "TINYTEXT NOT NULL", "a", 1540, $hint_str_or_uni…
275 func_mysqli_stmt_bind_result($link, $engine, "s", "TINYTEXT", NULL, 1560, $hint_str_or_unicode);
292 …func_mysqli_stmt_bind_result($link, $engine, "s", "ENUM('a', 'b')", "a", 1700, $hint_str_or_unicod…
293 …func_mysqli_stmt_bind_result($link, $engine, "s", "ENUM('a', 'b')", NULL, 1720, $hint_str_or_unico…
294 …func_mysqli_stmt_bind_result($link, $engine, "s", "SET('a', 'b')", "a", 1740, $hint_str_or_unicode…
295 …func_mysqli_stmt_bind_result($link, $engine, "s", "SET('a', 'b')", NULL, 1760, $hint_str_or_unicod…
298 func_mysqli_stmt_bind_result($link, $engine, "s", "TIME", "13:31:34.123456", 1770, "13:31:34");
300 /* Check that the function alias exists. It's a deprecated function,
303 printf("[3000] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
307 printf("[3001] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
324 in %s on line %d
326 …t(): Number of bind variables doesn't match number of fields in prepared statement in %s on line %d
328 …t(): Number of bind variables doesn't match number of fields in prepared statement in %s on line %d
330 %s(1) "a"