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]

the question is - how do i register out_param? 
If i try to make
[code]
out_param = models.CharField(max_length=20)
[/code]
im gettig wrong type error from database.

-- 
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/-/vWTLGHMMkYUJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to