Hi, I'm not sure if I correctly understood your question. So you're mixing named with inlined parameters as such?
SELECT a, b FROM table WHERE x = 'inlined' AND y = :named That should be quite easy to achieve. You can follow these sections of the manual: - http://www.jooq.org/doc/3.2/manual/sql-building/bind-values/named-parameters/ - http://www.jooq.org/doc/3.2/manual/sql-building/bind-values/inlined-parameters/ Let me know if this answered your question Lukas 2014/1/17 HK <[email protected]> > Hello, > > I am using JOOQ as SQL Builder queries. > > I need to generate a query which has a part with named parameters and > another part with inlined parameters. > > Is that possible with Jooq ? > > > Thanks in advance > > -- > 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. > -- 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.
