Re: [sqlalchemy] Oracle Function Out Params

2012-06-01 Thread Justin Valentini
), outparam('z_out', String)]), x_in=5) print result.out_parameters On May 31, 2012, at 12:17 PM, Justin Valentini wrote: I'm having difficulty determining how to correctly call an oracle package function which returns a numeric value. I want to call this: BEGIN :out

[sqlalchemy] Oracle Function Out Params

2012-05-31 Thread Justin Valentini
I'm having difficulty determining how to correctly call an oracle package function which returns a numeric value. I want to call this: BEGIN :out := my_schema.my_package.test_function(); END; I tried calling that using sqlalchemy.text() but I don't understand how to tell the procedure I want