we have MSDE Version 8.00.760(SP3) running on NT5.2(3790)
The 'DateTime' Data type has a problem when we try to enter just a 'Time' like
8:00 for example
Get Error Date Overflow (0)
It wants the Date as well such as '1899-01-01 08:00:00'
The dates we enter get a default time added to the end
like '2004-01-01 00:00:00'
But times don't
Using ODBC to connect
Any ideas how to solve this?
I have SQL Server Personal Edition and it does not have this problem on MSDE.
Is there a way to format the text box to send '1899-01-01 08:00:00' to the database but only show 08:00AM on the form?
I also know I can write code
Insert into blah blah blah Convert( DATETime ....
but that a lot of trouble
DougP, MCP, A+
The 'DateTime' Data type has a problem when we try to enter just a 'Time' like
8:00 for example
Get Error Date Overflow (0)
It wants the Date as well such as '1899-01-01 08:00:00'
The dates we enter get a default time added to the end
like '2004-01-01 00:00:00'
But times don't
Using ODBC to connect
Any ideas how to solve this?
I have SQL Server Personal Edition and it does not have this problem on MSDE.
Is there a way to format the text box to send '1899-01-01 08:00:00' to the database but only show 08:00AM on the form?
I also know I can write code
Insert into blah blah blah Convert( DATETime ....
but that a lot of trouble
DougP, MCP, A+