fixed error

This commit is contained in:
Timo Westkämper 2010-07-28 06:58:44 +00:00
parent 9aa102155f
commit 142ac85d13

View File

@ -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<String> lastNames = query.from(customer)
.where(customer.firstName.eq("Bob"))
.list(customer.lastName);