Date: 08/31/00
- Next message: Serkan AKCIN: "[PHP-DB] PHP and Apache Authentication..."
- Previous message: Tyson Lloyd Thwaites: "[PHP-DB] problem using odbc_fetch_row to count rows"
- Next in thread: thies <email protected>: "Re: [PHP-DB] How could I read a CLOB in webpage?"
- Reply: thies <email protected>: "Re: [PHP-DB] How could I read a CLOB in webpage?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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>
- Next message: Serkan AKCIN: "[PHP-DB] PHP and Apache Authentication..."
- Previous message: Tyson Lloyd Thwaites: "[PHP-DB] problem using odbc_fetch_row to count rows"
- Next in thread: thies <email protected>: "Re: [PHP-DB] How could I read a CLOB in webpage?"
- Reply: thies <email protected>: "Re: [PHP-DB] How could I read a CLOB in webpage?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

