1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- --TEST--
- Bug #44327 (PDORow::queryString property & numeric offsets / Crash)
- --EXTENSIONS--
- pdo_mysql
- --SKIPIF--
- <?php
- require_once(__DIR__ . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
- MySQLPDOTest::skip();
- $db = MySQLPDOTest::factory();
- ?>
- --FILE--
- <?php
- include __DIR__ . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc';
- $db = MySQLPDOTest::factory();
- $db->setAttribute(PDO::ATTR_EMULATE_PREPARES, 0);
- $createSql = "CREATE TABLE `bug53551` (
- `count` bigint(20) unsigned NOT NULL DEFAULT '0'
- )";
- $db->exec('drop table if exists bug53551');
- $db->exec($createSql);
- $db->exec("insert into bug53551 set `count` = 1 ");
- $db->exec("SET sql_mode = 'Traditional'");
- $sql = 'UPDATE bug53551 SET `count` = :count';
- $stmt = $db->prepare($sql);
- $values = array (
- 'count' => NULL,
- );
- echo "1\n";
- $stmt->execute($values);
- var_dump($stmt->errorInfo());
- echo "2\n";
- $stmt->execute($values);
- var_dump($stmt->errorInfo());
- echo "\ndone\n";
- ?>
- --CLEAN--
- <?php
- include __DIR__ . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc';
- $db = MySQLPDOTest::factory();
- $db->exec('DROP TABLE IF EXISTS bug53551');
- ?>
- --EXPECTF--
- 1
- Warning: PDOStatement::execute(): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'count' cannot be null in %s on line %d
- array(3) {
- [0]=>
- string(5) "23000"
- [1]=>
- int(1048)
- [2]=>
- string(29) "Column 'count' cannot be null"
- }
- 2
- Warning: PDOStatement::execute(): SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'count' cannot be null in %s on line %d
- array(3) {
- [0]=>
- string(5) "23000"
- [1]=>
- int(1048)
- [2]=>
- string(29) "Column 'count' cannot be null"
- }
- done
|