Is there any library to represent SQL queries as objects in Java code? -


I was wondering if there is a library that can be used to represent SQL queries in Java as an object Could.

In the code I have many static variable type java.lang.String that are hand written script queries I will search for a good fluent API library Which allows me to represent the query as objects instead of strings.

Example:

  Question q = Choose ("DATE", "QUOTE") .from ("STOCKMARKET"). Where (eq ("CORP", "?"). OrderBy ("DATE", DESC);  

Comments

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -