Dear Readers,
I have a query that I input values to and return results. In my query criteria I have Like "*" & [@input] & "*" . When I run the query in Access everything works fine. It returns results for everything that matches "chr" which includes "chris","Christine","christ", etc.... When I run the stored procedure in asp.net it returns no results and no errors? Any suggestions????
try
objcmd.connection.open()
objreader = objcmd.executereader
while objreader.read
response.write("<BR>Id=" & objreader("custid"))
end while
catch ex as OleDbException
response.write(ex.tostring)
end try