File: mysqli_stmt_get_result_non_select.phpt

package info (click to toggle)
php8.4 8.4.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208,108 kB
  • sloc: ansic: 1,060,628; php: 35,345; sh: 11,866; cpp: 7,201; pascal: 4,913; javascript: 3,091; asm: 2,810; yacc: 2,411; makefile: 689; xml: 446; python: 301; awk: 148
file content (92 lines) | stat: -rw-r--r-- 2,931 bytes parent folder | download
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
--TEST--
mysqli_stmt_get_result() - SHOW, DESCRIBE, EXPLAIN
--EXTENSIONS--
mysqli
--SKIPIF--
<?php
require_once 'skipifconnectfailure.inc';
?>
--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 $engine) {
                if (stristr($engine[0], '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!