Hello,
I have been running an SQL Insert to save some data into a table, here is the applicable snippet of the tail end of that insert where the date is added:
It will only save the date as MM/DD/YYYY format in the access table though, but I need greater accuracy down to the seconds. I've tried using the Date function as well to no luck. In access the field in the table is a General Date, with no input mask set (although I've tried making an input mask that would include everything and it didn't seem to help), and everything else is default.
Thanks!
I have been running an SQL Insert to save some data into a table, here is the applicable snippet of the tail end of that insert where the date is added:
Code:
finalString = finalString & "'" & addString & "', '" & Format(Now, "MM/DD/YY hh:mm:ss") & "')"
Thanks!
Comment