I've got a new database here and it's an upgraded version from Oracle 10g to Oracle 11g - the main problem is with LOB columns and everytime any function returns a LOB as result, the new database won't return strings like the old one did:
Old DB:
["C"]=>
string(23) "3874163,3874197,3874201"
New DB:
["C"]=>
resource(182) of type (stream)
Now when reading the streams sometimes there is an error of a non-existing stream resource beeing referenced and everything fails. I'm guessing the connection closed in the meantime without the stream beeing read and therefore the access is lost.
When changing the statements to include a casting against varchar for example:
CONVERT(VARCHAR, C, 120)
Or like this:
SELECT TO_CHAR(FUNC())
The value is returned as a string again but this is not really an optimal solution as every statement would need to be changed.
Is there any way/option to prevent LOBs from beeing delivered as streams so they are instead delivered as strings like in Oracle 10g?
Edit:
We are using the oci function-set for db access.
USER_LOBSbetween 10g and 11g? – jonearles Jan 12 '12 at 4:03USER_LOBS? I'm familiar withUSER_JOBSand that's pretty much everything i can find when i hit google withUSER_LOBS. I don't think the metadata has changed but i'll check. – bardiir Jan 12 '12 at 7:15oci_fetch_row()in the code here... – bardiir Jan 12 '12 at 13:49