On Mon, May 11, 2009 at 11:05 AM, NoviceSortOf <dljonsson2...@gmail.com>wrote:

>
> from views.py
>
> def testit():
>    from myproject.models import NewCust
>    p1 = NewCust()              ## Create blank instance
>    p1.zipcode = '2222222' ## Load something into it.
>    p1.last_name = 'Smith'
>    p1.save()                          ## Save it
>

If this is actually the view in your views.py, I can guarantee that it is
not being called. If it was it would be throwing errors. A views statement
always expects one argument, request. So I would first look at my urls and
make sure that the url matches what you are trying to get and then make sure
that it passes to testit. Then I would look at your traceback and start
figuring out where things are.

Basic debugging is finding a solution that works and slowly make it more
complicated until you find where your error is.

I hope that helps,

Michael

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
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