/PHP-5.4/ext/mysqlnd/ |
H A D | config9.m4 | 3 dnl config.m4 for mysqlnd driver 5 PHP_ARG_ENABLE(mysqlnd, whether to enable mysqlnd, 6 [ --enable-mysqlnd Enable mysqlnd explicitly, will be done implicitly 10 [ --disable-mysqlnd-compression-support 15 [ --with-zlib-dir[=DIR] mysqlnd: Set the path to libz install prefix], no, no) 18 dnl If some extension uses mysqlnd it will get compiled in PHP core 34 PHP_NEW_EXTENSION(mysqlnd, $mysqlnd_sources, $ext_shared) 35 PHP_ADD_BUILD_DIR([ext/mysqlnd], 1) 36 PHP_INSTALL_HEADERS([ext/mysqlnd/]) 40 PHP_ADD_BUILD_DIR([ext/mysqlnd], 1) [all …]
|
H A D | config.w32 | 4 ARG_WITH("mysqlnd", "Mysql Native Client Driver", "yes"); 7 if (CHECK_LIB("ws2_32.lib", "mysqlnd")) { 9 "mysqlnd.c " + 29 EXTENSION("mysqlnd", mysqlnd_source, false); 30 if (((PHP_ZLIB=="no") && (CHECK_LIB("zlib_a.lib;zlib.lib", "mysqlnd", PHP_MYSQLND))) || 31 …(PHP_ZLIB_SHARED && CHECK_LIB("zlib.lib", "mysqlnd", PHP_MYSQLND)) || (PHP_ZLIB == "yes" && (!PHP_… 36 PHP_INSTALL_HEADERS("", "ext/mysqlnd");
|
H A D | php_mysqlnd.c | 160 PHP_MINFO_FUNCTION(mysqlnd) in PHP_MINFO_FUNCTION() argument 218 static PHP_GINIT_FUNCTION(mysqlnd) in ZEND_DECLARE_MODULE_GLOBALS() 277 static PHP_MINIT_FUNCTION(mysqlnd) in PHP_INI_END() 354 PHP_MINIT(mysqlnd), 355 PHP_MSHUTDOWN(mysqlnd), 357 PHP_RINIT(mysqlnd), 362 PHP_RSHUTDOWN(mysqlnd), 366 PHP_MINFO(mysqlnd), 368 PHP_MODULE_GLOBALS(mysqlnd), 369 PHP_GINIT(mysqlnd), [all …]
|
/PHP-5.4/ext/mysql/ |
H A D | config.w32 | 7 if ((PHP_MYSQL == "yes" || PHP_MYSQL == "mysqlnd")) { 9 if (!ADD_EXTENSION_DEP('mysql', 'mysqlnd', true)) { 11 WARNING("mysql not enabled; mysqlnd is not enabled"); 15 MESSAGE("\tusing mysqlnd build");
|
H A D | config.m4 | 45 mysqlnd the MySQL native driver will be used]) 56 if test "$PHP_MYSQL" = "yes" || test "$PHP_MYSQL" = "mysqlnd"; then 163 if test "$PHP_MYSQL" = "yes" || test "$PHP_MYSQL" = "mysqlnd"; then 164 PHP_ADD_EXTENSION_DEP(mysql, mysqlnd) 165 AC_DEFINE([MYSQL_USE_MYSQLND], 1, [Whether mysqlnd is enabled])
|
/PHP-5.4/ext/mysql/tests/ |
H A D | skipifnotmysqlnd.inc | 2 if (strpos(mysql_get_client_info(), 'mysqlnd') === false) { 3 die('skip mysqlnd extension not available');
|
H A D | mysql_mysqlnd_read_timeout_long.phpt | 2 mysqlnd.net_read_timeout > default_socket_timeout 11 mysqlnd.net_read_timeout=12
|
/PHP-5.4/ext/mysqli/ |
H A D | config.m4 | 7 to mysql_config. If no value or mysqlnd is passed 14 if test "$PHP_MYSQLI" = "yes" || test "$PHP_MYSQLI" = "mysqlnd"; then 15 dnl This needs to be set in any extension which wishes to use mysqlnd 26 dnl mysqlnd doesn't support embedded, so we have to add some extra stuff 81 if test "$PHP_MYSQLI" = "yes" || test "$PHP_MYSQLI" = "mysqlnd"; then 82 PHP_ADD_EXTENSION_DEP(mysqli, mysqlnd) 83 AC_DEFINE([MYSQLI_USE_MYSQLND], 1, [Whether mysqlnd is enabled])
|
H A D | config.w32 | 5 // Passing value "mysqlnd" to it enables the bundled 25 if (PHP_MYSQLI == "yes" || PHP_MYSQLI == "mysqlnd") { 29 ADD_EXTENSION_DEP('mysqli', 'mysqlnd', true);
|
/PHP-5.4/ext/mysqli/tests/ |
H A D | mysqli_mysqlnd_read_timeout.phpt | 2 mysqlnd.net_read_timeout limit check 10 die("skip mysqlnd only test"); 15 mysqlnd.net_read_timeout=1
|
H A D | mysqli_mysqlnd_read_timeout_long.phpt | 2 mysqlnd.net_read_timeout > default_socket_timeout 10 die("skip: test applies only to mysqlnd"); 22 mysqlnd.net_read_timeout=12
|
H A D | mysqli_mysqlnd_read_timeout_zero.phpt | 2 mysqlnd.net_read_timeout = 0 10 die("skip: test applies only to mysqlnd"); 23 mysqlnd.net_read_timeout=0
|
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 | mysqli_debug_ini.phpt | 20 die("skip needs mysqlnd version/revision 5.0.4"); 29 mysqlnd.debug="t:O,/tmp/mysqli_debug_phpt.trace" 35 var_dump(ini_get('mysqlnd.debug'));
|
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_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_get_client_stats_ps.phpt | 9 die("skip only available with mysqlnd"); 13 mysqlnd.collect_statistics=1 14 mysqlnd.collect_memory_statistics=1
|
H A D | bug49442.phpt | 2 Bug #49422 (mysqlnd: mysqli_real_connect() and LOAD DATA INFILE crash) 67 …mysqlnd makes a connection created through mysql_init()/mysqli_real_connect() always a 'persistent… 69 'persistent' means that mysqlnd uses malloc() instead of emalloc(). nothing else. ext/mysqli will 73 …However, the bug is about malloc() and efree(). You can make make mysqlnd use malloc() by either u…
|
H A D | mysqli_result_references.phpt | 22 /* mysqlnd: force seperation - create copies */ 33 /* mysqlnd: force seperation - create copies */ 51 /* mysqlnd: force seperation - create copies*/
|
H A D | bug46614.phpt | 8 die("skip mysqlnd only");
|
H A D | mysqli_stmt_send_long_data_packet_size_mysqlnd.phpt | 2 mysqli_stmt_send_long_data() - exceed packet size, mysqlnd 9 if (!stristr(mysqli_get_client_info(), 'mysqlnd')) 10 die("skip: warnings only available in mysqlnd");
|
/PHP-5.4/ext/pdo_mysql/ |
H A D | config.w32 | 7 if (PHP_PDO_MYSQL == "yes" || PHP_PDO_MYSQL == "mysqlnd") { 9 STDOUT.WriteLine("INFO: mysqlnd build");
|
H A D | config.m4 | 7 If no value or mysqlnd is passed as DIR, the 31 if test "$PHP_PDO_MYSQL" != "yes" && test "$PHP_PDO_MYSQL" != "mysqlnd"; then 45 if test "$PHP_PDO_MYSQL" = "yes" || test "$PHP_PDO_MYSQL" = "mysqlnd"; then 48 AC_DEFINE([PDO_USE_MYSQLND], 1, [Whether pdo_mysql uses mysqlnd]) 151 if test "$PHP_MYSQL" = "mysqlnd"; then 152 PHP_ADD_EXTENSION_DEP(pdo_mysql, mysqlnd)
|