edpatterson
IS-IT--Management
- Feb 24, 2005
- 186
Hopefully this is the correct area.
This works within Access
[tt]
SELECT DISTINCT (Left([ipaddress],InStrRev([ipaddress],'.')-1)) AS temp FROM Hosts WHERE (((Hosts.IPAddress) Is Not Null))
[/tt]
Fails with 'Undefined function 'InStrRev' in expression.
I have googled everything but the correct terms for a list on known functions if any in ado.net.
Do I have to query out all of the records and process them with .net?
Ed
This works within Access
[tt]
SELECT DISTINCT (Left([ipaddress],InStrRev([ipaddress],'.')-1)) AS temp FROM Hosts WHERE (((Hosts.IPAddress) Is Not Null))
[/tt]
Fails with 'Undefined function 'InStrRev' in expression.
I have googled everything but the correct terms for a list on known functions if any in ado.net.
Do I have to query out all of the records and process them with .net?
Ed