yes, i'm using ms access... for now
this is what I pieced together:
Code:
Select e.ErrorID, e.ErrorName
from Errors as e
inner join solutions as s
on e.errorid = s.errorid
where s.summary like '*@term*'
or s.detail like '*@term*'
union all
Select e.errorid, e.errorname
from errors as e
inner join alt as a
on e.errorid = a.errorid
where a.summary like '*@term*'
or a.detail like '*@term*'
this is working when I put a string where @term is. How can I make it work with @term as a variable?
P.S. it does not return anything from my C# code. Is there a C# group here?
and thank you everyone for the help
