Hello,
Anybody have an idea on how to implement updating and inserting of Oracle database's CLOB columns with PHPRunner?
Text area field type in PHPR is capable of holding e.g. 5000 characters, which doesn't fit into an Oracle VARCHAR2 (maximum 4000 char). CLOB datatype in Oracle seems like the only possible option in this case. Fetching CLOB data into an text area is not a problem with PHPR, but if I try to update I receive an Oracle error (ORA-01704: string literal too long Cause: The string literal is longer than 4000 characters.
Action: Use a string literal of at most 4000 characters. Longer values may only be entered using bind variables.).
In PHP language it is possible to handle CLOBs with OCI-Lob.
But how to incorporate this into PHPR? Do I have to modify the PHPR generated PHP code or is there a way to do this with events? Or with something else?
Tane