Hi,
I am using jOOQ as a simple SQL builder for Postgres database with inline
parameters. E.g.
String sql = DSL.using(SQLDialect.POSTGRES)
.update(MY_TABLE)
.set(A, 1)
.where(B.greaterThan(5))
.getSQL(ParamType.INLINED);
This returns: "update MY_TABLE set A = 1 where B > 5"
Is there way to add a semicolon at the end in that result?
Thanks for your help!
- Rohit
--
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/d/optout.