My Oracle connection is set up using the adodb module (<a href="http://adodb.sourceforge.net/">http://adodb.sourceforge.net/</a>).&nbsp; I don&#39;t remember why we set it up that way...we haven&#39;t touched this part of our code for almost 2 years!.
<br><br>from cx_Oracle import makedsn<br>import adodb<br><br>db = adodb.NewADOConnection(&#39;oci8&#39;)<br>connection_string = makedsn(ip, port, database)&nbsp;&nbsp; &lt;== your values here, of course<br>db.Connect(connection _string, username, password)&nbsp; &lt;== and here, too
<br><br>query = &quot;SELECT name_of_pgSQL_routine(%(argument1)s, %(argument2)s)&quot;<br>results = db.execute(query, locals())<br><br>and go from there.&nbsp; Let me know if yo have other questions.<br><br>HTH,<br><br>--greg<br>
<br><br>