????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.17.73.81 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/pdo_dblib/tests/ |
Upload File : |
--TEST-- PDO_DBLIB driver does not support transactions --SKIPIF-- <?php if (!extension_loaded('pdo_dblib')) die('skip not loaded'); require dirname(__FILE__) . '/config.inc'; ?> --FILE-- <?php require dirname(__FILE__) . '/config.inc'; /*We see these rows */ $db->query("CREATE table php_test(val int)"); $db->beginTransaction(); $db->query("INSERT INTO php_test(val) values(1)"); $db->query("INSERT INTO php_test(val) values(2)"); $db->query("INSERT INTO php_test(val) values(3)"); $db->query("INSERT INTO php_test(val) values(4)"); $db->commit(); /*We don't see these rows */ $db->beginTransaction(); $db->query("INSERT INTO php_test(val) values(5)"); $db->query("INSERT INTO php_test(val) values(6)"); $db->query("INSERT INTO php_test(val) values(7)"); $db->query("INSERT INTO php_test(val) values(8)"); $db->rollback(); $rs = $db->query("SELECT * FROM php_test"); $rows = $rs->fetchAll(PDO::FETCH_ASSOC); var_dump($rows); $db->query("DROP table php_test"); ?> --EXPECT-- array(4) { [0]=> array(1) { ["val"]=> string(1) "1" } [1]=> array(1) { ["val"]=> string(1) "2" } [2]=> array(1) { ["val"]=> string(1) "3" } [3]=> array(1) { ["val"]=> string(1) "4" } }