Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have table column with expression filter applied. Is there any existing parser that would allow me to parse this column? the column can contain simple conditions such as

PROPERTY = 'name' AND PROPERTY2 = 'something else'

or more advanced like

(PROPERTY IN ('foo', 'bar') AND (PROPERTY IN ('foo1', 'bar2') OR OTHER_PROPERTY IN ('etc'))

It would totally suffice if it would return list of properties in expression and either value (in case of = operator) or list of all values (even if one property appears more than once in expression). Is there such parser available or do I have to write it myself?

share|improve this question
From your description I understand you are storing expressions in a database table but are you looking for a parser to use in SQL or Java? Are the expressions, which are stored in the table, then used in a subsequent SQL query built by your Java code? Please add some more information as to how you are using these expressions, thanks. – Tony Oct 26 '10 at 10:19
Yes, you're right, there is expression stored in db column and I also have some parsing and further processing of the expression in Java code. Currently the parsing is very simplistic and rules are hardcoded and rely on knowledge how expressions are constructed (in other part of code so for example it is hardcoded that "SOME_PROPERTY=\\d+" which would cause problem if it is changed to "SOME_PROPERTY IN (1,2,3) which is legal in column). I'd like to enhance it so that it'd be able to parse more extensively. – kane77 Oct 26 '10 at 10:44

1 Answer

I don't know how you are developing your project. But if your are using hibernate you can use criteria queries. Cirteria queries

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.