[#5881] Added test to example

This commit is contained in:
lukaseder 2017-02-17 09:46:10 +01:00
parent fcdb5f23a2
commit 5f72c6080f
2 changed files with 6 additions and 2 deletions

View File

@ -184,10 +184,14 @@
<database>
<inputSchema>WORLD</inputSchema>
</database>
<!-- [#5881] Specify this if concrete target directories / packages are required -->
<!--
<target>
<packageName>org.jooq.example.db.h2</packageName>
<directory>target/generated-sources/jooq-h2</directory>
</target>
-->
</generator>
</configuration>
</execution>

View File

@ -37,7 +37,7 @@ package org.jooq.example.javafx;
import static java.util.stream.Collectors.toList;
import static javafx.collections.FXCollections.observableArrayList;
import static org.jooq.example.db.h2.Tables.COUNTRIES;
import static org.jooq.generated.Tables.COUNTRIES;
import static org.jooq.impl.DSL.avg;
import static org.jooq.impl.DSL.field;
import static org.jooq.impl.DSL.name;
@ -55,8 +55,8 @@ import org.jooq.Record;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.conf.Settings;
import org.jooq.example.db.h2.tables.records.CountriesRecord;
import org.jooq.exception.DataAccessException;
import org.jooq.generated.tables.records.CountriesRecord;
import org.jooq.impl.DSL;
import org.jooq.tools.jdbc.JDBCUtils;