2
I have the following problem, in a report I need to display a field of the request that is as BLOB. And when I run the search it returns a strange code instead of the field information.
$sql = ibase_query("SELECT CAST(OBSERVACAO AS CHAR(80))
FROM TB_PEDIDO_VENDA
WHERE ID_PEDIDO = $id");
while ($row = ibase_fetch_row($sql)) {
echo utf8_encode($row[0]);
I tried using the cast to display but n was still. How to display the information for this blob field ?