A
Armando Méndez
I need to perform the following query to an SQL database
SELECT Id, Date
FROM dbo.Table
WHERE (Date >= :ate1: AND (Date <= :ate2:
Where :ate1:: and :ate2:: are input data fields in my form
Whenever I use parameters in the query fails.
if I run the query without parameters works Ok, like in:
SELECT Id, Date
FROM dbo.Table
WHERE (Date >= '11/01/07' AND (Date <= '11/15/07' )
I´m using Frontpage 2003, MS SQL 2005, Win 2003, IIS6
Any ideas?
SELECT Id, Date
FROM dbo.Table
WHERE (Date >= :ate1: AND (Date <= :ate2:
Where :ate1:: and :ate2:: are input data fields in my form
Whenever I use parameters in the query fails.
if I run the query without parameters works Ok, like in:
SELECT Id, Date
FROM dbo.Table
WHERE (Date >= '11/01/07' AND (Date <= '11/15/07' )
I´m using Frontpage 2003, MS SQL 2005, Win 2003, IIS6
Any ideas?