--TEST-- oci_lob_truncate() with default parameter value --SKIPIF-- true, 'timesten' => false); // test runs on these DBs require(dirname(__FILE__).'/skipif.inc'); ?> --FILE-- 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=== --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===