Jump to content

Problem with CLOB


Recommended Posts

  • 5 months later...
$sql = "SELECT message FROM watchdog"; // message is of CLOB type
$parsed = oci_parse($c, $sql);

I.
if (oci_execute($parsed)) {
    $numrows = oci_fetch_all($parsed, $tmpArr, 0, 1000);
    for ($i=0; $i<$numrows; $i++) {
        echo $tmpArr["MESSAGE"][$i] . "\n";
    }
}

II.
if (oci_execute($parsed)) {
    while ($row = oci_fetch_array($parsed, OCI_ASSOC)) {  
        $result = $row["MESSAGE"];
        echo $result->load() . "\n";
    }
}
Link to comment
https://forums.phpfreaks.com/topic/6559-problem-with-clob/#findComment-93845
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.