Home
last modified time | relevance | path

Searched refs:mysqli (Results 51 – 75 of 197) sorted by relevance

12345678

/PHP-7.2/ext/mysqli/tests/
H A Dbug74968.phpt12 $mysqli = new mysqli("$host:$port", $user, $passwd, $db);
16 $mysqli->query("SELECT 1 as a")->fetch_object("test");
H A Dbug50772.phpt2 Bug #50772 (mysqli constructor without parameters does not return a working mysqli object)
11 $db1 = new mysqli();
H A Dmysqli_fetch_field_direct_oo.phpt16 $mysqli = new mysqli();
17 $res = @new mysqli_result($mysqli);
23 if (!$mysqli = new my_mysqli($host, $user, $passwd, $db, $port, $socket))
27 if (!$res = $mysqli->query("SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 1")) {
49 $mysqli->close();
H A Dbug33491.phpt2 Bug #33491 (extended mysqli class crashes when result is not object)
13 class DB extends mysqli
23 // Segfault when using the DB class which extends mysqli
H A Dbug73462.phpt14 $mysql_1 = new mysqli('p:'.$host, $user, $passwd, $db);
21 $mysql_2 = @new mysqli(' !!! invalid !!! ', $user, $passwd, $db);
25 $mysql_3 = new mysqli('p:'.$host, $user, $passwd, $db);
H A Dmysqli_data_seek_oo.phpt18 if (!$mysqli = new mysqli($host, $user, $passwd, $db, $port, $socket))
22 $res = new mysqli_result($mysqli);
26 if (!$res = $mysqli->query('SELECT * FROM test ORDER BY id LIMIT 4', MYSQLI_STORE_RESULT))
60 if (!$res = $mysqli->query('SELECT * FROM test ORDER BY id', MYSQLI_USE_RESULT))
71 $mysqli->close();
H A D056.phpt2 extend mysqli
12 class foobar extends mysqli {
H A Dbug77956.phpt2 ensure an error is returned when mysqli.allow_local_infile is off
9 mysqli.allow_local_infile=0
48 Warning: mysqli::query(): LOAD DATA LOCAL INFILE forbidden in %s on line %d
49 [006] [2000] LOAD DATA LOCAL INFILE is forbidden, check mysqli.allow_local_infile
H A Dmysqli_local_infile_set_on.phpt9 mysqli.allow_local_infile=1
21 echo "connector: ", ini_get("mysqli.allow_local_infile"), "\n";
H A Dmysqli_init.phpt16 if (is_object($link) && 'mysqli' != get_class($link))
17 printf("[002] Expecting object of type mysqli got object of type %s\n", get_class($link));
H A Dbug38003.phpt4 <?php if (!extension_loaded("mysqli")) print "skip"; ?>
8 class DB extends mysqli {
H A Dmysqli_pconn_disabled.phpt2 mysqli_pconnect() - mysqli.allow_persistent = 0
12 mysqli.allow_persistent=0
13 mysqli.max_persistent=2
14 mysqli.max_links=2
H A Dmysqli_unclonable.phpt2 Trying to clone mysqli object
23 Fatal error: Uncaught Error: Trying to clone an uncloneable object of class mysqli in %s:%d
H A Dbug49442.phpt20 mysqli.allow_local_infile=1
21 mysqli.allow_persistent=1
22 mysqli.max_persistent=1
69 'persistent' means that mysqlnd uses malloc() instead of emalloc(). nothing else. ext/mysqli will
70 …not consider it as a 'persistent' connection in a user sense, ext/mysqli will not appy max_persist…
H A D068.phpt2 mysqli get_client_info
H A Dbug68077.phpt20 mysqli.allow_local_infile=1
21 mysqli.allow_persistent=1
22 mysqli.max_persistent=1
H A Dmysqli_stmt_init.phpt55 Warning: mysqli_stmt_init() expects parameter 1 to be mysqli, object given in %s on line %d
57 Warning: mysqli_stmt_init(): Couldn't fetch mysqli in %s on line %d
H A D070.phpt2 mysqli ping
H A Dbug34810.phpt2 Bug #34810 (mysqli::init() and others use wrong $this pointer without checks)
65 object(mysqli)#%d (%d) {
106 object(mysqli)#%d (%d) {
H A Dmysqli_pconn_twice.phpt11 mysqli.allow_persistent=1
12 mysqli.max_persistent=-1
13 mysqli.max_links=-1
H A Dbug74595.phpt9 $class = new ReflectionClass('mysqli');
H A Dmysqli_constants.phpt2 Constants exported by ext/mysqli
10 mysqli.allow_local_infile=1
195 /* are they available in all versions of ext/mysqli ?
219 if (stristr($name, 'mysqli')) {
H A Dbug31141.phpt7 class Test extends mysqli
/PHP-7.2/ext/pdo_mysql/tests/
H A Dpdo_mysql_class_constants.phpt6 if (!extension_loaded('mysqli') && !extension_loaded('mysqlnd')) {
41 } else if (extension_loaded('mysqli')) {
60 ^ Undocumented and pitfall for ext/mysqli users
/PHP-7.2/ext/mysqli/
H A Dphp_mysqli_structs.h316 ZEND_BEGIN_MODULE_GLOBALS(mysqli)
339 ZEND_END_MODULE_GLOBALS(mysqli)
341 #define MyG(v) ZEND_MODULE_GLOBALS_ACCESSOR(mysqli, v)
350 ZEND_EXTERN_MODULE_GLOBALS(mysqli)

Completed in 43 milliseconds

12345678