|
The problem with the param is that there are multiple syntaxes:
-
`?` mostly legacy of Hibernate ORM 1 / 2
-
`?1` the JP-QL positional syntax
-
`:name` the named parameter syntax
So what to do? All? A 4th one to be safe? BTW the reason for not liking ? is that it is the legacy one.
|