in reply to Re: Database time or just time
in thread Database time or just time

The function you are looking for in Access would simply be 'Now()'
INSERT INTO mytable (user_id, subject, message, message_date) VALUES ('Bob', 'Lunch', 'Anyone want lunch?', NOW())
--Glenn