my model is very simple:

class Referrer(models.Model):
    url = models.CharField(maxlength=255, unique=True)

here is the relevent view code:

    referrer = request.META.get('HTTP_REFERER','-')
    r, r_new = Referrer.objects.get_or_create(url=referrer)

thanks for your replies!

--Brandon

On 2007-05-01 (Tue) at 16:15:43 -0400, Andy Dustman wrote:
> 
> On 5/1/07, Brandon Low <[EMAIL PROTECTED]> wrote:
> >
> > How can a get_or_create cause an integrity constraint error?
> 
> Also... It's hard to see exactly what's going on because the code in
> the traceback is using **kwargs. If you use get() or get_or_create(),
> it's looking for a match on all the parameters. My guess is that there
> is an additional parameter (other than that URL) which is not matched,
> so it tries to create a new object, but then this violates the unique
> index. The value of kwargs would go a long way towards figuring it
> out.
> -- 
> Patriotism means to stand by the country. It does
> not mean to stand by the president. -- T. Roosevelt
> 
> This message has been scanned for memes and
> dangerous content by MindScanner, and is
> believed to be unclean.
> 
> > 

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to