Validations - When do they get called

Just a simple of question of when do validations get called? Do they get
called on save or new or do they get called whenever an instance of that
object gets called? Thanks,

-S

On 26 Nov 2007, at 17:43, Shandy N. wrote:

Just a simple of question of when do validations get called? Do they
get
called on save or new or do they get called whenever an instance of
that
object gets called? Thanks,

When the object is saved. You can also call valid? to see if an object
is valid.

Fred