up vote 7 down vote favorite
1
share [g+] share [fb]

Is this the only way to create custom model validation? To do it using the forms? What if I want to send data to the database through means other than forms?

link|improve this question

70% accept rate
feedback

3 Answers

up vote 8 down vote accepted

Currently Django does not provide any model-level validation (besides basic "NOT NULL", "UNIQUE" and length validations). This is on the TODO list but most likely will not fit upcoming 1.1 release.

You can perform validation related tasks in save() method of your model or use before_save signal (raising exception in signal handler will cause the transaction to be rolled back).

link|improve this answer
feedback

Model validation will be available shortly in Django version 1.2. It is available right now if you use a current Django svn checkout of the trunk.

Various clean methods are now available. See http://docs.djangoproject.com/en/dev/ref/models/instances/#id1 for details.

link|improve this answer
2  
Worth noting, AFAICT, these new clean methods are only called automatically by ModelForms, not when you create and save a Model instance manually... if doing the latter you need to remember to call the validation manually as well (I think by calling model.fullclean() ). – Anentropic Jan 11 '11 at 10:39
feedback

In general, you should be able to handle what you want through the built in field types and their options or the model's meta options. You can also override the save method to perform validation/sanitation. If that is not sufficient, you can create your own field type.

The problem is that there is no good expected behavior. What should happen? Should an exception be raised? The fields are only really an abstraction at the database level, so there shouldn't be more information in there than what the database needs to know.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.