String url = "jdbc:derby://localhost:1527/test;create=true";
try {
Class.forName("org.apache.derby.jdbc.ClientDriver").newInstance();
conn = DriverManager.getConnection(url, userName, password);
TestFactory create = new TestFactory(conn);
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @jooq-unittest-testXTestCase71-test@
// write your own tests, just set DISABLE to ENABLE in the comment above
// future generation will not erase your code ;)
Result<Record> result = create.select().from(__X_TEST_CASE_71).limit(1).fetch();
for (Record r : result) {
java.lang.Integer id = r.getValue(__X_TEST_CASE_71.ID);
java.lang.Integer testCase6469Id = r.getValue(__X_TEST_CASE_71.TEST_CASE_64_69_ID);
System.out.println(
"id : "+ id +