Hello all,
I’m working to upgrade the Hibernate version of my application stack to version 5.3. In this new version, support for positional query parameters (’?’) has been removed[1].
This is big problem as my application executes a lot of queries which were implemented making us of this kind of parameters. As the API of the Query class did not change together with this change, I’m able to compile without erros but all these queries are failing at runtime.
What do you recommend? Should I change all the queries one by one?. I think that it could be very helpful to have a setting that would enable backwards compatibility for this kind of queries. What do you think?
Thanks in advance.