can access use triggers?

J

John

Hello,

I am wondering if access can use triggers like sql server? I want to
be able to update a column called updated when a record is modified. Thanks
in advance.

John
 
C

Cheryl Fischer

John,

No, Access does not have triggers; it has events. To do what you want -
from a Form - you would use the BeforeUpdate event with the following code:

me!Updated = Date()

hth,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top