INSERT_INTO table_name (date_time_field) VALUES (#" & Now() & "#);"
The #'s return an error as do single quotes and having nothing. Anyone know the syntax?
INSERT_INTO table_name (date_time_field) VALUES (CURRENT_TIMESTAMP());
I haven't tried this exact statement, but the CURRENT_TIMESTAMP() command returns the date and time on the SQL machine and I think it works in ACCESS. It is also a handy variable to use in date time comparisons...
eg SELECT ... WHERE Date < CURRENT_TIMESTAMP;