I want to take a text string from a textbox and use it to search a database ie:
USER INPUT: (a + b) OR "cat"
and convert into
SQL : ((PART.DESCRIPTION like '%a%' AND PART.DESCRIPTION like '%b%') or PART.DESCRIPTION like '%cat%')
Does anybody know any routines that does this sort of thing?
cheers