I\'m getting this error using sqlite3 in django:
Exception Value: too many SQL variables
And I think the answer to it is this, from
I hava found the same error when I run the line:
Entry.objects.all().delete()
I solved the problem by
while Entry.objects.count(): Entry.objects.all()[0].delete()
I think it's a better idea than others.