Named parameters in queries Postgres

Hi

I use databaseManager.getDataSetByQuery to get a foundset from a query. So I do not use the query builder in this case.
I use Postgres, Servoy 8.2.2, NG Client

I pass parameters in the query as an ?
But I need to use named parameters in my query as I want to use a parameter more then once in my query.

How can I use named parameters?

Thanks
Andre

You don’t. You’ll just need to repeat the parameter. Parameters are just ordered, so the order of the parameters in the arguments array should match the order of the question marks in the query.

Thanks Scott
I thought so, I will repeat them
Andre