From 142ac85d13be4be2b7c247cd24db4b363e559857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Westk=C3=A4mper?= Date: Wed, 28 Jul 2010 06:58:44 +0000 Subject: [PATCH] fixed error --- querydsl-docs/src/main/docbook/content/integration/sql.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/querydsl-docs/src/main/docbook/content/integration/sql.xml b/querydsl-docs/src/main/docbook/content/integration/sql.xml index 610a8006e..95d97f5e9 100644 --- a/querydsl-docs/src/main/docbook/content/integration/sql.xml +++ b/querydsl-docs/src/main/docbook/content/integration/sql.xml @@ -97,7 +97,7 @@ exporter.export(conn.getMetaData()); QCustomer customer = new QCustomer("c"); SQLTemplates dialect = new HSQLDBTemplates(); // SQL-dialect -SQLQuery query = SQLQueryImpl(connection, dialect); +SQLQuery query = new SQLQueryImpl(connection, dialect); List lastNames = query.from(customer) .where(customer.firstName.eq("Bob")) .list(customer.lastName);