the 2.6 manual has this source example:
// Congratulate the author by email:
if (author.getMailSent()) {
sendCongratulationMail(author);
// Don't send the mail twice, so store that flag in the database
author.setMailSent(true);
author.store();
}
but shouldn't that be:
if (! author.getMailSent()) {
...
and anyway where did mail_sent come from since it isn't in the starting example
schema?
later on in 3.4.1.6 it looks like there is double html escaping at work:
Result<Record> result = create.select().from(POSTS).fetch();
regarding section 5.5 - none of that statement re-use is going to work if the
connection is
closed, right? Isn't that specified by the JDBC standard? Any closed connection
will automatically
close any of its statements, right?
-mda
--
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.