Hi All,

I am trying to add check constraints to my table and i was ended with
the below error.
I got this statement "from check_constraints import check" from django
doc site.
(http://code.google.com/p/django-check-constraints/wiki/Features)

Please guide me if I am missing any thing while import.

G:\mysite>python manage.py shell
Python 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more
information.
(InteractiveConsole)
>>> from check_constraints import check
Traceback (most recent call last):
  File "<console>", line 1, in <module>
ImportError: No module named check_constraints
>>> from check_constraints import Check
Traceback (most recent call last):
  File "<console>", line 1, in <module>
ImportError: No module named check_constraints
>>> from django.check_constraints import Check
Traceback (most recent call last):
  File "<console>", line 1, in <module>
ImportError: No module named check_constraints
>>> from Check_Constraints import Check
Traceback (most recent call last):
  File "<console>", line 1, in <module>
ImportError: No module named Check_Constraints
>>>


Thanks for your time.

Regards,
Lokesh
--~--~---------~--~----~------------~-------~--~----~
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