I have a stored procedure in SQL server with a date parameter input(varchar) that
runs FINE on the server itself with query analyzer.
But when I try calling the same stored proc from ACCESS 2000
using the ADO execute command, I get the error:
cannot convert varchar to smalldatetime.
The date is actually used in a query in the WHERE statement in the stored
procedure and the date input is a varchar. I know SQL server does an implicit
conversion of varchar to smalldatetime so why is ACCESS so particular ? I
even tried changing the stored proc's input to a date variable but that did
not help.
Any help would be appreciated.