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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
--TEST--
MySQL PDOStatement->errorInfo();
--SKIPIF--
<?php
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'skipif.inc');
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
MySQLPDOTest::skip();
$db = MySQLPDOTest::factory();
?>
--FILE--
<?php
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
$db = MySQLPDOTest::factory();
MySQLPDOTest::createTestTable($db);
printf("Testing emulated PS...\n");
try {
$db->setAttribute(PDO::MYSQL_ATTR_DIRECT_QUERY, 1);
if (1 != $db->getAttribute(PDO::MYSQL_ATTR_DIRECT_QUERY))
printf("[002] Unable to turn on emulated prepared statements\n");
$stmt = $db->prepare('SELECT id FROM ihopeitdoesnotexist ORDER BY id ASC');
var_dump($stmt->errorInfo());
$stmt->execute();
var_dump($stmt->errorInfo());
MySQLPDOTest::createTestTable($db);
$stmt = $db->prepare('SELECT label FROM test ORDER BY id ASC LIMIT 1');
$db->exec('DROP TABLE test');
var_dump($stmt->execute());
var_dump($stmt->errorInfo());
var_dump($db->errorInfo());
} catch (PDOException $e) {
printf("[001] %s [%s] %s\n",
$e->getMessage(), $db->errorInfo(), implode(' ', $db->errorInfo()));
}
printf("Testing native PS...\n");
try {
$db->setAttribute(PDO::MYSQL_ATTR_DIRECT_QUERY, 0);
if (0 != $db->getAttribute(PDO::MYSQL_ATTR_DIRECT_QUERY))
printf("[004] Unable to turn off emulated prepared statements\n");
$stmt = $db->prepare('SELECT id FROM ihopeitdoesnotexist ORDER BY id ASC');
var_dump($stmt);
MySQLPDOTest::createTestTable($db);
$stmt = $db->prepare('SELECT label FROM test ORDER BY id ASC LIMIT 1');
var_dump($stmt->errorInfo());
$db->exec('DROP TABLE test');
$stmt->execute();
var_dump($stmt->errorInfo());
var_dump($db->errorInfo());
} catch (PDOException $e) {
printf("[003] %s [%s] %s\n",
$e->getMessage(), $db->errorInfo(), implode(' ', $db->errorInfo()));
}
print "done!";
?>
--CLEAN--
<?php
require dirname(__FILE__) . '/mysql_pdo_test.inc';
MySQLPDOTest::dropTestTable();
?>
--EXPECTF--
Testing emulated PS...
array(3) {
[0]=>
%unicode|string%(0) ""
[1]=>
NULL
[2]=>
NULL
}
Warning: PDOStatement::execute(): SQLSTATE[42S02]: Base table or view not found: 1146 Table '%s.ihopeitdoesnotexist' doesn't exist in %s on line %d
array(3) {
[0]=>
%unicode|string%(5) "42S02"
[1]=>
int(1146)
[2]=>
%unicode|string%(%d) "Table '%s.ihopeitdoesnotexist' doesn't exist"
}
Warning: PDOStatement::execute(): SQLSTATE[42S02]: Base table or view not found: 1146 Table '%s.test' doesn't exist in %s on line %d
bool(false)
array(3) {
[0]=>
%unicode|string%(5) "42S02"
[1]=>
int(1146)
[2]=>
%unicode|string%(%d) "Table '%s.test' doesn't exist"
}
array(3) {
[0]=>
%unicode|string%(5) "00000"
[1]=>
NULL
[2]=>
NULL
}
Testing native PS...
Warning: PDO::prepare(): SQLSTATE[42S02]: Base table or view not found: 1146 Table '%s.ihopeitdoesnotexist' doesn't exist in %s on line %d
bool(false)
array(3) {
[0]=>
%unicode|string%(0) ""
[1]=>
NULL
[2]=>
NULL
}
Warning: PDOStatement::execute(): SQLSTATE[42S02]: Base table or view not found: 1146 Table '%s.test' doesn't exist in %s on line %d
array(3) {
[0]=>
%unicode|string%(5) "42S02"
[1]=>
int(1146)
[2]=>
%unicode|string%(%d) "Table '%s.test' doesn't exist"
}
array(3) {
[0]=>
%unicode|string%(5) "00000"
[1]=>
NULL
[2]=>
NULL
}
done!
|