Database
MSAccess .mdb with linked Sql Server Backend.
Problem
Using this Syntax
inserts the to the ClockTime field in this format mm/dd/yyyy HH:MM:00.
I need it in this format mm/dd/yyyy HH:MM:SS.
MSAccess .mdb with linked Sql Server Backend.
Problem
Using this Syntax
Code:
mydb.Execute "insert into TimeClock (Empid,ClockTime,Status) values (" & Me.Empid & ",#" & Now() & "#," & Me.TimeStatus & ")"
I need it in this format mm/dd/yyyy HH:MM:SS.