????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.219.195.35 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/oci8/tests/ |
Upload File : |
--TEST-- oci_lob_truncate() with default parameter value --SKIPIF-- <?php $target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs require(dirname(__FILE__).'/skipif.inc'); ?> --FILE-- <?php require(dirname(__FILE__).'/connect.inc'); // Initialization $stmtarray = array( "drop table lob_044_tab", "create table lob_044_tab (blob BLOB)", ); oci8_test_sql_execute($c, $stmtarray); // Run Test echo "Test 1 - truncate on insert\n"; $s = oci_parse($c, "INSERT INTO lob_044_tab (blob) VALUES (empty_blob()) RETURNING blob INTO :v_blob "); $blob = oci_new_descriptor($c, OCI_D_LOB); oci_bind_by_name($s,":v_blob", $blob, -1, OCI_B_BLOB); oci_execute($s, OCI_DEFAULT); var_dump($blob->write("this is a biiiig faaat test string. why are you reading it, I wonder? =)")); var_dump($blob->seek(0)); var_dump($blob->read(10000)); var_dump($blob->truncate()); var_dump($blob->seek(0)); var_dump($blob->read(10000)); oci_commit($c); // Read it back echo "\nTest 2 - read it back\n"; $s = oci_parse($c, "SELECT blob FROM lob_044_tab FOR UPDATE"); oci_execute($s, OCI_DEFAULT); $row = oci_fetch_array($s); var_dump($row[0]->read(10000)); // Clean up $stmtarray = array( "drop table lob_044_tab" ); oci8_test_sql_execute($c, $stmtarray); ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- Test 1 - truncate on insert int(72) bool(true) string(72) "this is a biiiig faaat test string. why are you reading it, I wonder? =)" bool(true) bool(true) string(0) "" Test 2 - read it back string(0) "" ===DONE===