Lines Matching refs:NULL

158     func_mysqli_stmt_bind_result($link, $engine, "i", "TINYINT", NULL, 40);
160 func_mysqli_stmt_bind_result($link, $engine, "i", "TINYINT UNSIGNED", NULL, 80);
163 func_mysqli_stmt_bind_result($link, $engine, "i", "BOOL", NULL, 120);
165 func_mysqli_stmt_bind_result($link, $engine, "i", "BOOLEAN", NULL, 160);
169 func_mysqli_stmt_bind_result($link, $engine, "i", "SMALLINT", NULL, 220);
171 func_mysqli_stmt_bind_result($link, $engine, "i", "SMALLINT UNSIGNED", NULL, 260);
175 func_mysqli_stmt_bind_result($link, $engine, "d", "MEDIUMINT", NULL, 320);
177 func_mysqli_stmt_bind_result($link, $engine, "d", "MEDIUMINT UNSIGNED", NULL, 360);
182 func_mysqli_stmt_bind_result($link, $engine, "i", "INTEGER", NULL, 440);
185 func_mysqli_stmt_bind_result($link, $engine, "i", "INTEGER UNSIGNED", NULL, 500);
191 func_mysqli_stmt_bind_result($link, $engine, "i", "BIGINT", NULL, 540);
192 func_mysqli_stmt_bind_result($link, $engine, "i", "BIGINT UNSIGNED", NULL, 580);
201 func_mysqli_stmt_bind_result($link, $engine, "d", "FLOAT", NULL, 620);
203 func_mysqli_stmt_bind_result($link, $engine, "d", "FLOAT UNSIGNED ", NULL, 660);
208 func_mysqli_stmt_bind_result($link, $engine, "d", "DOUBLE(10,2)", NULL, 700);
211 func_mysqli_stmt_bind_result($link, $engine, "d", "DOUBLE(10,2) UNSIGNED", NULL, 740);
214 func_mysqli_stmt_bind_result($link, $engine, "d", "DECIMAL(10,2)", NULL, 780);
217 func_mysqli_stmt_bind_result($link, $engine, "d", "DECIMAL(10,2)", NULL, 820);
221 func_mysqli_stmt_bind_result($link, $engine, "s", "DATE NOT NULL", @date('Y-m-d'), 860);
222 func_mysqli_stmt_bind_result($link, $engine, "s", "DATE", NULL, 880);
225 … func_mysqli_stmt_bind_result($link, $engine, "s", "DATETIME NOT NULL", @date('Y-m-d H:i:s'), 920);
226 func_mysqli_stmt_bind_result($link, $engine, "s", "DATETIME", NULL, 940);
231 func_mysqli_stmt_bind_result($link, $engine, "s", "TIME NOT NULL", @date('H:i:s'), 1000);
232 func_mysqli_stmt_bind_result($link, $engine, "s", "TIME", NULL, 1020);
236 func_mysqli_stmt_bind_result($link, $engine, "s", "YEAR NOT NULL", $tmp, 1060, "integer");
237 func_mysqli_stmt_bind_result($link, $engine, "s", "YEAR", NULL, 1080);
242 func_mysqli_stmt_bind_result($link, $engine, "s", "CHAR(1) NOT NULL", "a", 1140, 'string');
243 func_mysqli_stmt_bind_result($link, $engine, "s", "CHAR(1)", NULL, 1160);
249 func_mysqli_stmt_bind_result($link, $engine, "s", "VARCHAR(1) NOT NULL", "a", 1240, 'string');
250 func_mysqli_stmt_bind_result($link, $engine, "s", "VARCHAR(1)", NULL, 1260);
254 func_mysqli_stmt_bind_result($link, $engine, "s", "BINARY(1) NOT NULL", "b", 1320);
255 func_mysqli_stmt_bind_result($link, $engine, "s", "BINARY(1)", NULL, 1340);
259 func_mysqli_stmt_bind_result($link, $engine, "s", "VARBINARY(1) NOT NULL", "b", 1400);
260 func_mysqli_stmt_bind_result($link, $engine, "s", "VARBINARY(1)", NULL, 1420);
264 func_mysqli_stmt_bind_result($link, $engine, "s", "TINYBLOB NOT NULL", "b", 1480);
265 func_mysqli_stmt_bind_result($link, $engine, "s", "TINYBLOB", NULL, 1500);
268 func_mysqli_stmt_bind_result($link, $engine, "s", "TINYTEXT NOT NULL", "a", 1540, 'string');
269 func_mysqli_stmt_bind_result($link, $engine, "s", "TINYTEXT", NULL, 1560, 'string');
283 func_mysqli_stmt_bind_result($link, $engine, "s", "ENUM('a', 'b')", NULL, 1720, 'string');
285 func_mysqli_stmt_bind_result($link, $engine, "s", "SET('a', 'b')", NULL, 1760, 'string');