[PHP-DB] How could I read a CLOB in webpage? From: chang (chang <email protected>)
Date: 08/31/00

I follow the example in www.php.net

$sql = OCIParse($conn,"select * from table_with_lob_field");
OCIExecute($sql);
while ( OCIFetchInto($sql, $row, OCI_ASSOC) )

$lob_data = $row[lob_field_name]->load();
echo $lob_data;
}

but I still couldn't show the data in my webpage.
Could anyone help me? thanks!

Michael Chang

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-db-unsubscribe <email protected>
For additional commands, e-mail: php-db-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>