summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/mysqli_stmt_get_result_non_select.phpt
blob: b6f02d0f6cb9e7638d46ebc9b73f7e35d8d2ce59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
--TEST--
mysqli_stmt_get_result() - SHOW, DESCRIBE, EXPLAIN
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifemb.inc');
require_once('skipifconnectfailure.inc');

if (!function_exists('mysqli_stmt_get_result'))
    die('skip mysqli_stmt_get_result not available');
?>
--FILE--
<?php
	/*
	NOTE: no datatype tests here! This is done by
	mysqli_stmt_bind_result.phpt already. Restrict
	this test case to the basics.
	*/
	require('table.inc');

	if (!$stmt = mysqli_stmt_init($link))
		printf("[001] [%d] %s\n", mysqli_errno($link), mysqli_error($link));

	if (mysqli_query($link, 'PREPARE mystmt FROM "SHOW ENGINES"')) {
		mysqli_query($link, 'DEALLOCATE PREPARE mystmt');

		if (!$stmt->prepare('SHOW ENGINES') ||
			!$stmt->execute())
			printf("[002] [%d] %s\n", $stmt->errno, $stmt->error);

		if (!$res = $stmt->get_result())
			printf("[003] [%d] %s\n", $stmt->errno, $stmt->error);

		$engines = mysqli_fetch_all($res, MYSQLI_NUM);
		if	(empty($engines)) {
			printf("[004] It is very unlikely that SHOW ENGINES returns no data, check manually\n");
		} else {
			$found = false;
			foreach ($engines as $k => $engine)
				foreach ($engine as $k => $v)
					if (stristr($v, 'MyISAM')) {
						$found = true;
						break;
					}
			if (!$found)
				printf("[005] It is very unlikely that SHOW ENGINES does not show MyISAM, check manually\n");
		}
		mysqli_free_result($res);
	}

	if (mysqli_query($link, 'PREPARE mystmt FROM "DESCRIBE test id"')) {
		mysqli_query($link, 'DEALLOCATE PREPARE mystmt');

		if (!$stmt->prepare('DESCRIBE test id') ||
			!$stmt->execute())
			printf("[006] [%d] %s\n", $stmt->errno, $stmt->error);

		if (!$res = $stmt->get_result())
			printf("[007] [%d] %s\n", $stmt->errno, $stmt->error);

		$description = mysqli_fetch_assoc($res);
		if ($description['Field'] != 'id') {
			printf("[008] Returned data seems wrong, [%d] %s\n",
				mysqli_errno($link), mysqli_error($link));
			var_dump($description);
		}
		mysqli_free_result($res);
	}

	if (mysqli_query($link, 'PREPARE mystmt FROM "EXPLAIN SELECT id FROM test"')) {
		mysqli_query($link, 'DEALLOCATE PREPARE mystmt');

		if (!$stmt->prepare('EXPLAIN SELECT id FROM test') ||
			!$stmt->execute())
			printf("[009] [%d] %s\n", $stmt->errno, $stmt->error);

		if (!$res = $stmt->get_result())
			printf("[010] [%d] %s\n", $stmt->errno, $stmt->error);

		$tmp = mysqli_fetch_assoc($res);
		if (empty($tmp))
			printf("[011] Empty EXPLAIN result set seems wrong, check manually, [%d] %s\n",
				mysqli_errno($link), mysqli_error($link));
		mysqli_free_result($res);
	}
	mysqli_close($link);

	print "done!";
?>
--CLEAN--
<?php
    require_once("clean_table.inc");
?>
--EXPECT--
done!