fischadler
Programmer
Hi,
I am trying to run this Select query through ASP:
This query works fine in Access when pasted in SQL View, but when I run it in ASP, I am getting this error:
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
[Microsoft][ODBC Microsoft Access Driver] Undefined function 'Replace' in expression.
Is there some way around this?
Thanks!
-Fischadler
I am trying to run this Select query through ASP:
Code:
SELECT EmployersID, EmployerName, PostCode
FROM Employers
WHERE (((Replace(PostCode,' ','',1,-1))='N78PS'));
This query works fine in Access when pasted in SQL View, but when I run it in ASP, I am getting this error:
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
[Microsoft][ODBC Microsoft Access Driver] Undefined function 'Replace' in expression.
Is there some way around this?
Thanks!
-Fischadler