querydsl/querydsl-sql/src/main/java/com/mysema/query/sql/SQLQueryImpl.java
Timo Westkämper 194fb2d1e2
2009-08-20 08:31:25 +00:00

23 lines
473 B
Java

/*
* Copyright (c) 2009 Mysema Ltd.
* All rights reserved.
*
*/
package com.mysema.query.sql;
import java.sql.Connection;
/**
* SQLQueryImpl is a JDBC based implementation of the Querydsl SQLQuery interface
*
* @author tiwe
* @version $Id$
*/
public class SQLQueryImpl extends AbstractSQLQuery<SQLQueryImpl> implements SQLQuery{
public SQLQueryImpl(Connection conn, SQLTemplates templates) {
super(conn, templates);
}
}