Re: Calling Oracle Stored Procedures with REF CURSOR I get "unhandled data type CursorDebugWrapper"

2014-10-05 Thread Enyert Viñas
Hi Néstor, Please provide us your code, so we can help you with this issue. Best regards 2014-10-05 11:38 GMT-04:30 Néstor Boscán : > Hi > > I'm trying to use DJango to call Oracle Stored Procedures with REF CURSOR. > When I execute it I get: "unhandled data type CursorDebugWrapper". It looks >

Re: Insite help

2014-01-21 Thread Enyert Viñas
Right now you dont need WYSIWYG editors. Just learn Chrome DevTools and use a text editor. For example Vim, Sublime Text or Emacs. You can try an IDE like eclipse or PyCharm too. Regards. 2014/1/21 Matthew Stroud > I have been working on

Re: A really simple hosting for my Django app?

2013-06-15 Thread Enyert Viñas
On 06/15/2013 03:18 PM, Jonathan D. Baker wrote: Check out webfaction. They have a ton of documentation, great support and it's only $10/mo. Sent from my iPhone On Jun 15, 2013, at 1:32 PM, thoms > wrote: Hi there! I just finished my first Django app that'

Re: User authentication with either username or email.

2013-06-14 Thread Enyert Viñas
El 14/06/2013 07:26 a.m., shashank sandela escribió: unbound method authenticate() must be called with EmailOrUsernameModelBackend instance as first argument (got nothing instead) Hi. Remember that you must import a function before you call it. This is a reference to authentication in Django h

Re: Button action to delete files from server

2012-09-17 Thread Enyert Viñas
Django provides a File class (django.core.files.File) with File.save() and File.delete methods. You can associate an action to delete and use File.delete() to do this task. 2012/9/17 xactive > I have little experience with Django/Python but have a problem that I need > to solve. > > Currently I

Re: Instaling django

2012-08-30 Thread Enyert Viñas
U need to install django correctly. Check that you have the a supported python version for your django version. Try easy_install django or pip django. I think the installation instruction from django project site https://www.djangoproject.com/download/ are clear. If you are in windows use your favo

Re: new to django

2012-08-21 Thread Enyert Viñas
u can just do python manage.py runserver. Then django will create a "server" at localhost:8000 or 127.0.0.1:8000 2012/8/21 Kurtis Mullins > python manage.py runserver > Then open your browser and goto http://localhost:8000 > > > On Tue, Aug 21, 2012 at 12:43 PM, maha wrote: > >> .don know what