I'm beginning to play seriously with jOOQ 3.0.0-RC1 (glad to see RC2 :)

and I was reading the docs here:

http://www.jooq.org/tutorial.php#step4

Executor create = new Executor(conn, SQLDialect.MYSQL);Result<Record> result = 
Executor.select().from(POSTS).fetch();

There is an issue in the second line; it should be:
Result<Record> result = create.select().from(POSTS).fetch();

right?


-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to