mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-30 21:08:30 +08:00
23 lines
473 B
Java
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);
|
|
}
|
|
|
|
}
|