vote up 6 vote down star
5

I was wondering if there is any library that can be used to represent SQL queries as objects in Java.

In the code I have plenty of static variables of type java.lang.String that are hand written SQL queries. I would be looking for library having a nice fluent API that allows me to represent the queries as objects rather than strings.

Example:

Query q = select("DATE", "QUOTE")
  .from("STOCKMARKET")
  .where(eq("CORP", "?"))
  .orderBy("DATE", DESC);
flag

56% accept rate

5 Answers

vote up 4 vote down check

Jequel looks pretty nifty: http://www.jequel.de/

It uses a fluent interface, so it's easy to read, almost like natural SQL (from the docs):

SqlString sql = select(ARTICLE.OID)
               .from(ARTICLE, ARTICLE_COLOR)
               .where(ARTICLE.OID.eq(ARTICLE_COLOR.ARTICLE_OID)
               .and(ARTICLE.ARTICLE_NO.is_not(NULL)));

It also supports executing queries against a DataSource with parameters, so it handles creation of parameterized queries as well.

link|flag
Looks good. That is something like I was looking for. Cheers! – Pregzt May 15 at 11:56
Nice! Don't forget to come back and post your findings. I only found out about it a few days ago, and I haven't had a chance to use it a lot yet, but I plan to in the future. – mjd79 May 15 at 14:30
vote up 6 vote down

Squiggle

link|flag
James, based on first impresion Squiggle is some sort of the library I was looking for. However the nice, fluent, compact API is missing, but that can be pretty easily added. Cheers! – Pregzt May 6 at 11:14
vote up 4 vote down

http://www.hibernate.org/ Probably most powerfull ORM library for Java. It can do much more then just simple query mapping. So you can easily implement it somwhere else in your application. For your case it can be done somehow like that:

public class LookupCodeName
{
    private String code;
    private String name;

 /*... getter-setters ... */
}

public class someBL {

public List<LookupCodeName> returnSomeEntity() {
      SQLQuery sqlQuery =  (SQLQuery)((HibernateSession)em).getHibernateSession()
                        .createSQLQuery( "SELECT st.name as name, st.code as code FROM someTable st")
                        .addScalar("code")
                        .addScalar("name")
.setResultTransformer(Transformers.aliasToBean(LookupCodeName.class));
    }
return (List<LookupCodeName>)sqlQuery.list();
}
link|flag
Yeah, I know Hibernate, but in your example there is still hardcoded SQL represented as string ("SELECT st.name as name, st.code as code FROM someTable st"). Maybe my question wasn't clear enough, but I wanted to replace string queries with object representation of those rather than employ powerful framework to execute queries. – Pregzt May 5 at 15:49
Pregzt, you might want to take a look at Hibernate Criterias – Il-Bhima May 6 at 7:33
I think a criteria API pulls in the wrong direction from having a SQL builder API. On my current project, the original (and long gone) developers used a criteria API, and the current team hates it. We can get a DAO method done using native SQL in half the time it takes to write the criteria API, because the we often end up looking at the SQL the criteria API generates to verify its correctness. If you know the correct SQL already, why count on a SQL generator? – Alan May 15 at 4:15
<quote>If you know the correct SQL already, why count on a SQL generator?</quote> All your comment based at this statement. But why'd you think you "know a correct SQL"? Just some thing, hibernate stands at: 1.The sql can be too complex to write it manyally.(Complex entity relations for example) 2.If you change entity - you do not need to change criteria for new correct data mapping. 3.Do you know on which database your application will be working? Hardcoded SQL kills some independencie. – Vanger May 15 at 8:47
vote up 1 vote down

Empire-db

http://incubator.apache.org/empire-db/

Quaere

http://xircles.codehaus.org/projects/quaere

link|flag
Is quaere active project? There is very little on their website. – Pregzt May 5 at 15:50
I'm not quaere user in general. Just remember its as one of java-can-have-linq hype years ago. From the mail-list archive suggest that the project is not very active indeed. FWIW, browsing through the mail list show me some similar projects you may want to take a peek. JaQu (h2database.com/html/jaqu.html) The bottom of the page also reference so some other related projects – Sake May 8 at 4:23
vote up 1 vote down

If you don't want to map string queries, then you must annotate your class as entity and bind it with table then you can use hibernate or java persistance. Example will be too complex though. But, at the end your query will transform to something like this:

find list of entities:

 Criteria c = createCreteria(entityManager, StockMarket.class);
    // you can add "where" clause by using c.add(Restrictions); 
   // like this: c.add(Restrictions.ilike("name", "%somename%"); where "name" is your entity's field
     List<StockMarket> smList = c.list();

find object by id:

 StockMarket sm  = entityManager.find(StockMarket.class, id);
link|flag

Your Answer

Get an OpenID
or

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