Re: How to pass a boolean to a stored proc using Cx_Oracle?

2006-11-24 Thread Gabriel Genellina
At Wednesday 22/11/2006 15:37, JG wrote: I am using Python 2.4 and cx_Oracle. I have a stored proc that takes two arguments. First is an NUMBER, second is a BOOLEAN. How do you call that stored procedure? After properly extablishing a connection, I have something like this: cursor =

How to pass a boolean to a stored proc using Cx_Oracle?

2006-11-22 Thread JG
Hi, I am using Python 2.4 and cx_Oracle. I have a stored proc that takes two arguments. First is an NUMBER, second is a BOOLEAN. How do you call that stored procedure? After properly extablishing a connection, I have something like this: cursor = con.cursor()