Voting

: two plus five?
(Example: nine)

The Note You're Voting On

moom_mong at yahoo dot com
23 years ago
To read a lob, other way:

$sql = OCIParse("select * from table_with_lob_field");
OCIExecute($sql, OCI_DEFAULT);
while ( OCIFetch($sql)) {
$o = ociresult($sql,"loc_field_name");
$loc_field_name = $o->load();
print $loc_field_name;
};

<< Back to user notes page

To Top