I have a stored procedure that has an start date and end date paramters as nvarchar data types and I believe it is going to create a problem when I run it in crystal reports. The date parameter is under the
create stored Proc (@A nvarchar(10), @B nvarchar(10), @startdate nvarchar(10), @enddate nvarchar(10))
as
Declare @x nvarchar(1000)
set @x = select A from B where Datefield < Start date and < end date
this is the only way the date input works, so question s what would be the work around if crystal displays an error with the date paramter? Any help will be appreciated.
create stored Proc (@A nvarchar(10), @B nvarchar(10), @startdate nvarchar(10), @enddate nvarchar(10))
as
Declare @x nvarchar(1000)
set @x = select A from B where Datefield < Start date and < end date
this is the only way the date input works, so question s what would be the work around if crystal displays an error with the date paramter? Any help will be appreciated.