I want to put, in an Access 97 database, using the Access 'Date/Time' datatype, a 'time', using VB.NET with OleDB.
I start with the time converted to number of seconds.
eg
This I incorporate into a query after preceding it with a '.':
Trouble is, it comes out in access as 10:18:47!
What am I doing wrong?
I start with the time converted to number of seconds.
eg
Code:
Dim long Time = 3661 '(Equivalent to 01:01:01)
Code:
"INSERT INTO Data_Set VALUES(.3661)"
What am I doing wrong?
Comment