Lines Matching refs:s

16         printf("[001] [%d] %s\n", mysqli_connect_errno(), mysqli_connect_error());
21 printf("[%04d] [%d] %s\n", $offset, mysqli_errno($link), mysqli_error($link));
25 …ysqli_query($link, sprintf("CREATE TABLE test(id INT, label %s, PRIMARY KEY(id)) ENGINE = %s", $sq…
31 printf("[%04d] [%d] %s\n", $offset + 1, mysqli_errno($link), mysqli_error($link));
36 … printf("[%04d] [%d] %s\n", $offset + 2, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
42 … printf("[%04d] [%d] %s\n", $offset + 3, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
49 … printf("[%04d] [%d] %s\n", $offset + 3 + $id, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
59 … printf("[%04d] [%d] %s\n", $offset + 7, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
65 … printf("[%04d] [%d] %s\n", $offset + 8, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
73 … printf("[%04d] [%d] %s\n", $offset + 9, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
84 printf("[%04d] [%d] Expecting %s/'%s' [type hint = %s], got %s/'%s'\n",
97 printf("[%04d] [%d] %s, expecting 3 results, got only %d results\n",
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);
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');
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');