Home
last modified time | relevance | path

Searched refs:version (Results 201 – 225 of 1203) sorted by path

12345678910>>...49

/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_character_set.phpt27 if (!$res = mysqli_query($link, 'SELECT version() AS server_version'))
31 $version = explode('.', $tmp['server_version']);
32 if (empty($version))
33 printf("[003] Cannot determine server version, need MySQL Server 4.1+ for the test!\n");
35 if ($version[0] <= 4 && $version[1] < 1)
H A Dmysqli_character_set_name.phpt30 if (!$res = mysqli_query($link, 'SELECT version() AS server_version'))
34 $version = explode('.', $tmp['server_version']);
35 if (empty($version))
36 printf("[006] Cannot determine server version, need MySQL Server 4.1+ for the test!\n");
38 if ($version[0] <= 4 && $version[1] < 1)
H A Dmysqli_character_set_name_oo.phpt24 if (!$res = $mysqli->query('SELECT version() AS server_version'))
28 $version = explode('.', $tmp['server_version']);
29 if (empty($version))
30 printf("[006] Cannot determine server version, need MySQL Server 4.1+ for the test!\n");
32 if ($version[0] <= 4 && $version[1] < 1)
H A Dmysqli_class_mysqli_driver_reflection.phpt12 Let's not deal with cross-version issues in the EXPECTF/UEXPECTF.
17 die("skip Test has been written for the latest version of mysqlnd only");
H A Dmysqli_class_mysqli_reflection.phpt10 Let's not deal with cross-version issues in the EXPECTF/UEXPECTF.
15 die("skip Test has been written for the latest version of mysqlnd only");
H A Dmysqli_class_mysqli_result_reflection.phpt14 Let's not deal with cross-version issues in the EXPECTF/UEXPECTF.
19 die("skip Test has been written for the latest version of mysqlnd only");
H A Dmysqli_class_mysqli_warning_reflection.phpt13 Let's not deal with cross-version issues in the EXPECTF/UEXPECTF.
18 die("skip Test has been written for the latest version of mysqlnd only");
H A Dmysqli_constants.phpt116 $version = 50007 + 1;
123 $version = mysqli_get_client_version();
126 if (($version > 51122 && $version < 60000) || ($version > 60003) || $IS_MYSQLND) {
131 if ($version >= 50500 || $IS_MYSQLND) {
137 if ($version >= 50606 || $IS_MYSQLND) {
141 if ($version > 50002) {
148 if ($version > 50002 || $IS_MYSQLND) {
152 if ($version > 50003) {
162 if ($version > 50007) {
168 if ($version > 50110 || $IS_MYSQLND) {
[all …]
H A Dmysqli_debug_ini.phpt20 die("skip needs mysqlnd version/revision 5.0.4");
H A Dmysqli_driver.phpt113 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…
H A Dmysqli_explain_metadata.phpt67 /* Depending on your version, the MySQL server migit not support this */
H A Dmysqli_fetch_field_flags.phpt152 $version = mysqli_get_server_version($link);
153 if ((($version > 50122) && ($version < 60000) && ($version != 50200)) ||
154 ($version >= 60004)) {
165 $version = mysqli_get_server_version($link);
166 if ($version < 50000) {
167 // TODO - check exact version!
173 $version = mysqli_get_server_version($link);
174 if (($version <= 50114 && $version > 50100) || ($version == 50200)) {
175 // TODO - check exact version!
H A Dmysqli_fetch_field_types.phpt100 $version = 50007 + 1;
102 $version = mysqli_get_client_version();
105 if ($version > 50002) {
H A Dmysqli_get_charset.phpt29 if (!$res = mysqli_query($link, 'SELECT version() AS server_version'))
33 $version = explode('.', $tmp['server_version']);
34 if (empty($version))
35 printf("[005] Cannot determine server version, need MySQL Server 4.1+ for the test!\n");
37 if ($version[0] <= 4 && $version[1] < 1)
H A Dmysqli_mysqlnd_read_timeout_long.phpt17 die(sprintf('skip Needs MySQL 5.0.12+, found version %d.', mysqli_get_server_version($link)));
H A Dmysqli_mysqlnd_read_timeout_zero.phpt17 die(sprintf('skip Needs MySQL 5.0.12+, found version %d.', mysqli_get_server_version($link)));
H A Dmysqli_options.phpt66 if (!$res = mysqli_query($link2, 'SELECT version() AS server_version'))
70 $version = explode('.', $tmp['server_version']);
71 if (empty($version))
72 printf("[008] Cannot determine server version, need MySQL Server 4.1+ for the test!\n");
74 if ($version[0] <= 4 && $version[1] < 1)
H A Dmysqli_phpinfo.phpt23 if (!stristr($phpinfo, "client api library version"))
24 printf("[002] ext/mysqli should have exposed the library version.\n");
H A Dmysqli_poll_mixing_insert_select.phpt46 $queries[] = "CALL p('myversion', @version)";
134 if ($have_proc && ($res = mysqli_query($link['link'], "SELECT @version as _version"))) {
H A Dmysqli_query.phpt59 $res = mysqli_query($link, 'CALL p(@version)');
60 $res = mysqli_query($link, 'SELECT @version AS p_version');
H A Dmysqli_query_stored_proc.phpt12 die(sprintf('skip Needs MySQL 5.0+, found version %d.', mysqli_get_server_version($link)));
99 if (!mysqli_query($link, 'CALL p(@version)'))
102 if (!mysqli_query($link, "SET @version = 'unknown'"))
105 if (!mysqli_query($link, 'CALL p(@version)'))
108 if (!$res = mysqli_query($link, 'SELECT @version as _vers'))
127 if (!mysqli_query($link, "CALL p('myversion', @version)"))
130 if (!mysqli_query($link, "SET @version = 'unknown'"))
133 if (!mysqli_query($link, "CALL p('myversion', @version)"))
136 if (!$res = mysqli_query($link, 'SELECT @version as _vers'))
H A Dmysqli_query_unicode.phpt58 $res = mysqli_query($link, 'CALL процедурка(@version)');
59 $res = mysqli_query($link, 'SELECT @version AS п_версия');
H A Dmysqli_real_query.phpt53 mysqli_real_query($link, 'CALL p(@version)');
54 mysqli_real_query($link, 'SELECT @version AS p_version');
H A Dmysqli_report.phpt290 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…
292 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…
298 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…
300 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…
304 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…
H A Dmysqli_report_wo_ps.phpt100 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…
102 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…
108 … in your SQL syntax; check the manual that corresponds to your %s server version for the right syn…

Completed in 80 milliseconds

12345678910>>...49