Here is my dilemma.
i would like to be able to pass a parameter into a stored procedure through access project and use that parameter as part of a wildcard search.
I can pass this parameter to the procedure, but the parameter is not being recognized as a wildcard.
Here is what I have been trying, but it isn't working because it is seeing the field as %whatever% and not '%whatever%'
FieldName Like '%' + @WildCard + '%'
I can't get it to recognize the quotes. Maybe i am going down teh wrong path entirely. Any help would be appreciated.
Thanks!
i would like to be able to pass a parameter into a stored procedure through access project and use that parameter as part of a wildcard search.
I can pass this parameter to the procedure, but the parameter is not being recognized as a wildcard.
Here is what I have been trying, but it isn't working because it is seeing the field as %whatever% and not '%whatever%'
FieldName Like '%' + @WildCard + '%'
I can't get it to recognize the quotes. Maybe i am going down teh wrong path entirely. Any help would be appreciated.
Thanks!