Not sure what you're aiming to do, but if you want the current date to be placed in the field when the record is created then you just need to add the now() function to the SQL query that creates the row.
For instance something like this:
INSERT INTO table (name, date) VALUES ("name", now());
Then whenever a new record is created, it'll have the current date in the date field.
-tim