Home
last modified time | relevance | path

Searched refs:mysqlnd (Results 1 – 25 of 98) sorted by relevance

1234

/PHP-8.2/ext/mysqlnd/
H A Dconfig9.m41 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 Dconfig.w323 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 Dphp_mysqlnd.c80 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 Dmysqli_get_client_stats_implicit_free.phpt9 die("skip only available with mysqlnd");
13 mysqlnd.collect_statistics=1
14 mysqlnd.collect_memory_statistics=1
H A Dmysqli_get_client_stats_off.phpt9 die("skip only available with mysqlnd");
13 mysqlnd.collect_statistics=0
14 mysqlnd.collect_memory_statistics=0
H A Dbug79084_collision.phpt2 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 Dbug79084.phpt2 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 Dmysqli_mysqlnd_read_timeout.phpt2 mysqlnd.net_read_timeout limit check
12 mysqlnd.net_read_timeout=1
H A Dmysqli_get_client_stats_skipped.phpt4 mysqlnd.collect_statistics="1"
5 mysqlnd.collect_memory_statistics="1"
12 die("skip only available with mysqlnd");
H A Dmysqli_get_connection_stats_off.phpt4 mysqlnd.collect_statistics="0"
5 mysqlnd.collect_memory_statistics="0"
12 die("skip only available with mysqlnd");
H A Dmysqli_mysqlnd_read_timeout_long.phpt2 mysqlnd.net_read_timeout > default_socket_timeout
18 mysqlnd.net_read_timeout=12
H A Dmysqli_mysqlnd_read_timeout_zero.phpt2 mysqlnd.net_read_timeout = 0
19 mysqlnd.net_read_timeout=0
H A Dmysqli_get_connection_stats.phpt4 mysqlnd.collect_statistics="1"
5 mysqlnd.collect_memory_statistics="1"
12 die("skip only available with mysqlnd");
H A Dmysqli_debug_ini.phpt25 mysqlnd.debug="t:O,/tmp/mysqli_debug_phpt.trace"
30 var_dump(ini_get('mysqlnd.debug'));
H A Dmysqli_get_client_stats_ps.phpt9 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 Dconfig.m44 [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 Dconfig.w326 if (PHP_PDO_MYSQL == "yes" || PHP_PDO_MYSQL == "mysqlnd") {
8 STDOUT.WriteLine("INFO: mysqlnd build");
/PHP-8.2/ext/mysqli/
H A Dconfig.m442 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 Dconfig.w324 // Passing value "mysqlnd" to it enables the bundled
24 ADD_EXTENSION_DEP('mysqli', 'mysqlnd', true);
/PHP-8.2/ext/pdo_mysql/tests/
H A Dpdo_mysql_connect_attr.phpt9 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 Dunsigned_bigint.phpt6 mysqlnd
11 if (!MySQLPDOTest::isPDOMySQLnd()) die('skip only for mysqlnd');
H A Dpdo_mysql_class_constants.phpt7 if (!extension_loaded('mysqli') && !extension_loaded('mysqlnd')) {
49 if (extension_loaded('mysqlnd')) {
70 Assorted mysqlnd settings missing
H A Dbug_33689.phpt31 // 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 Dcompile.sh29 --with-pdo-mysql=mysqlnd \
30 --with-mysqli=mysqlnd \
/PHP-8.2/.github/actions/configure-x32/
H A Daction.yml24 --with-pdo-mysql=mysqlnd \
25 --with-mysqli=mysqlnd \

Completed in 30 milliseconds

1234