[sqlalchemy] (NotSupportedError) Variable_TypeByValue(): unhandled data type cx_Oracle.OBJECT

2010-05-10 Thread Tobias
Hi! Using cx_oracle and SQLAlchemy 0.6 I am having troubles with Oracle objects (cx_Oracle.OBJECT) as function parameters. For example I have a function that returns an object of type cx_Oracle.OBJECT, and now I want to use that object as argument for a new function call: obj =

Re: [sqlalchemy] (NotSupportedError) Variable_TypeByValue(): unhandled data type cx_Oracle.OBJECT

2010-05-10 Thread Michael Bayer
the first step here would be to create a cx_oracle -only application that issues your query and gets the right result back.then we can make sure sqlalchemy is passing that along in the same way. The error you are seeing is generated by cx_oracle (SQLA just wraps the NotSupportedError).