Re: Oracle's SP OUT param

2012-01-05 Thread Akira Kir
That worked, tho i was already making all based on cx_oracle. Thanks ;:) -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/h-KISDJysLkJ. To post to this group

Oracle's SP OUT param

2012-01-04 Thread Akira Kir
Hello. Im trying to get Oracle SPs working in django. Procedure recives in_param and out_param in get_data function i do [code] def get_data(self, in_param): cursor = connection.cursor() #out_param = ret=cursor.callproc("TEST_PKG", (in_param,out_param)) cursor.close() [/code] t

Jython zxJDBC / Python cx_oracle wrong number or types of arguments when calling to oracle's stored procedure

2011-12-20 Thread Akira Kir
Trying to make a django test application which will use stored oracle's procedures to insert/get data. Using jython with zxJDBC but same error applies with python and cx_oracle too. here is some code snipets: models.py > from django.db import models > from django.db import connection > > c