I\'m having a problem with propel 1.6 and a oracle procedure. I post it under PDO because I\'m Propel just for proxying my call to PDO.
Basically the procedure get t
I'd suspect the problem is the first parameter. You tell PDO that it's a string (PDO::PARAM_STR
) but it's actually types.cursorType
. There's a user comment in the PHP manual that suggests that ref cursors are not supported.
Unluckily, the Oracle driver for PDO is experimental and (IMHO) basically abandoned.