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
Post a Comment