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
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
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
3 matches
Mail list logo