/PHP-8.2/ext/mysqlnd/ |
H A D | config9.m4 | 1 PHP_ARG_ENABLE([mysqlnd], 2 [whether to enable mysqlnd], 3 [AS_HELP_STRING([--enable-mysqlnd], 4 [Enable mysqlnd explicitly, will be done implicitly when required by other 10 [whether to disable compressed protocol support in mysqlnd], 11 [AS_HELP_STRING([--disable-mysqlnd-compression-support], 12 [Disable support for the MySQL compressed protocol in mysqlnd])], 16 dnl If some extension uses mysqlnd it will get compiled in PHP core 43 PHP_ADD_BUILD_DIR([ext/mysqlnd], 1) 44 PHP_INSTALL_HEADERS([ext/mysqlnd/]) [all …]
|
H A D | config.w32 | 3 ARG_WITH("mysqlnd", "Mysql Native Client Driver", "yes"); 6 if (CHECK_LIB("ws2_32.lib", "mysqlnd")) { 30 EXTENSION("mysqlnd", mysqlnd_source, false, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1"); 31 if ((((PHP_ZLIB=="no") && (CHECK_LIB("zlib_a.lib;zlib.lib", "mysqlnd", PHP_MYSQLND))) || 32 (PHP_ZLIB_SHARED && CHECK_LIB("zlib.lib", "mysqlnd", PHP_MYSQLND)) || 39 if (CHECK_LIB("crypt32.lib", "mysqlnd")) { 43 PHP_INSTALL_HEADERS("", "ext/mysqlnd");
|
H A D | php_mysqlnd.c | 80 PHP_MINFO_FUNCTION(mysqlnd) in PHP_MINFO_FUNCTION() argument 139 static PHP_GINIT_FUNCTION(mysqlnd) in ZEND_DECLARE_MODULE_GLOBALS() 191 static PHP_MINIT_FUNCTION(mysqlnd) in PHP_INI_END() 272 PHP_MINIT(mysqlnd), 273 PHP_MSHUTDOWN(mysqlnd), 275 PHP_RINIT(mysqlnd), 280 PHP_RSHUTDOWN(mysqlnd), 284 PHP_MINFO(mysqlnd), 286 PHP_MODULE_GLOBALS(mysqlnd), 287 PHP_GINIT(mysqlnd), [all …]
|
/PHP-8.2/ext/mysqli/tests/ |
H A D | mysqli_get_client_stats_implicit_free.phpt | 9 die("skip only available with mysqlnd"); 13 mysqlnd.collect_statistics=1 14 mysqlnd.collect_memory_statistics=1
|
H A D | mysqli_get_client_stats_off.phpt | 9 die("skip only available with mysqlnd"); 13 mysqlnd.collect_statistics=0 14 mysqlnd.collect_memory_statistics=0
|
H A D | bug79084_collision.phpt | 2 Bug #79084 (mysqlnd may fetch wrong column indexes with MYSQLI_BOTH) - collision 23 ini_set('mysqlnd.fetch_data_copy', false); 31 ini_set('mysqlnd.fetch_data_copy', true);
|
H A D | bug79084.phpt | 2 Bug #79084 (mysqlnd may fetch wrong column indexes with MYSQLI_BOTH) 23 ini_set('mysqlnd.fetch_data_copy', false); 31 ini_set('mysqlnd.fetch_data_copy', true);
|
H A D | mysqli_mysqlnd_read_timeout.phpt | 2 mysqlnd.net_read_timeout limit check 12 mysqlnd.net_read_timeout=1
|
H A D | mysqli_get_client_stats_skipped.phpt | 4 mysqlnd.collect_statistics="1" 5 mysqlnd.collect_memory_statistics="1" 12 die("skip only available with mysqlnd");
|
H A D | mysqli_get_connection_stats_off.phpt | 4 mysqlnd.collect_statistics="0" 5 mysqlnd.collect_memory_statistics="0" 12 die("skip only available with mysqlnd");
|
H A D | mysqli_mysqlnd_read_timeout_long.phpt | 2 mysqlnd.net_read_timeout > default_socket_timeout 18 mysqlnd.net_read_timeout=12
|
H A D | mysqli_mysqlnd_read_timeout_zero.phpt | 2 mysqlnd.net_read_timeout = 0 19 mysqlnd.net_read_timeout=0
|
H A D | mysqli_get_connection_stats.phpt | 4 mysqlnd.collect_statistics="1" 5 mysqlnd.collect_memory_statistics="1" 12 die("skip only available with mysqlnd");
|
H A D | mysqli_debug_ini.phpt | 25 mysqlnd.debug="t:O,/tmp/mysqli_debug_phpt.trace" 30 var_dump(ini_get('mysqlnd.debug'));
|
H A D | mysqli_get_client_stats_ps.phpt | 9 die("skip only available with mysqlnd"); 13 mysqlnd.collect_statistics=1 14 mysqlnd.collect_memory_statistics=1
|
/PHP-8.2/ext/pdo_mysql/ |
H A D | config.m4 | 4 [PDO: MySQL support. DIR is the MySQL base directory. If no value or mysqlnd 34 if test "$PHP_PDO_MYSQL" != "yes" && test "$PHP_PDO_MYSQL" != "mysqlnd"; then 48 if test "$PHP_PDO_MYSQL" = "yes" || test "$PHP_PDO_MYSQL" = "mysqlnd"; then 51 AC_DEFINE([PDO_USE_MYSQLND], 1, [Whether pdo_mysql uses mysqlnd]) 106 if test "$PHP_PDO_MYSQL" = "yes" || test "$PHP_PDO_MYSQL" = "mysqlnd"; then 107 PHP_ADD_EXTENSION_DEP(pdo_mysql, mysqlnd)
|
H A D | config.w32 | 6 if (PHP_PDO_MYSQL == "yes" || PHP_PDO_MYSQL == "mysqlnd") { 8 STDOUT.WriteLine("INFO: mysqlnd build");
|
/PHP-8.2/ext/mysqli/ |
H A D | config.m4 | 42 if test "$PHP_MYSQLI" = "yes" || test "$PHP_MYSQLI" = "mysqlnd"; then 43 dnl This needs to be set in any extension which wishes to use mysqlnd 70 if test "$PHP_MYSQLI" = "yes" || test "$PHP_MYSQLI" = "mysqlnd"; then 71 PHP_ADD_EXTENSION_DEP(mysqli, mysqlnd)
|
H A D | config.w32 | 4 // Passing value "mysqlnd" to it enables the bundled 24 ADD_EXTENSION_DEP('mysqli', 'mysqlnd', true);
|
/PHP-8.2/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_connect_attr.phpt | 9 if (!MySQLPDOTest::isPDOMySQLnd()) die('skip only for mysqlnd'); 52 } elseif ($row['attr_value'] !== 'mysqlnd') { 53 printf("_client_name mismatch (expected 'mysqlnd', got '%s')\n", $row['attr_value']);
|
H A D | unsigned_bigint.phpt | 6 mysqlnd 11 if (!MySQLPDOTest::isPDOMySQLnd()) die('skip only for mysqlnd');
|
H A D | pdo_mysql_class_constants.phpt | 7 if (!extension_loaded('mysqli') && !extension_loaded('mysqlnd')) { 49 if (extension_loaded('mysqlnd')) { 70 Assorted mysqlnd settings missing
|
H A D | bug_33689.phpt | 31 // libmysql and mysqlnd will show the pdo_type entry at a different position in the hash 32 // and will report a different type, as mysqlnd returns native types.
|
/PHP-8.2/travis/ |
H A D | compile.sh | 29 --with-pdo-mysql=mysqlnd \ 30 --with-mysqli=mysqlnd \
|
/PHP-8.2/.github/actions/configure-x32/ |
H A D | action.yml | 24 --with-pdo-mysql=mysqlnd \ 25 --with-mysqli=mysqlnd \
|