Skip to content
Advertisement

How to use named parameter in plain sql with jooq

I’m using JOOQ with plain/raw SQL, so that means i’m not using any code generation or the fluid DSL thingy.

The following code works:

JavaScript

Now let’s say i have a query with multiple parameters like this:

JavaScript

How do i use a named parameter with these types of queries? I’m thinking something like :

JavaScript

But the above code doesn’t work (for obvious reasons). Thanks in advance.

Advertisement

Answer

jOOQ currently doesn’t support executing SQL with named parameters. You can use jOOQ to render named parameters if you’re executing the query with another API, such as Spring JDBC. For more information, consider the manual:

http://www.jooq.org/doc/latest/manual/sql-building/bind-values/named-parameters

But the plain SQL templating API allows for re-using templates, e.g.

JavaScript

This way, you can at least re-use values several times.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement