Hi,
The idea is to retrieve via an HQL query, the value of an entry in a Map.
This request :
Quote:
select objet.mapLibelle['ja'] from FormuleEntite as objet
throws an exception :
javax.ejb.EJBTransactionRolledbackException: unexpected AST node: [ near line 1, column 24 [select objet.mapLibelle['ja'] from com.sylob.cochise.dm3.ejb.entite.formule.FormuleEntite as objet]
But this request :
Quote:
select objet.id from FormuleEntite as objet where objet.mapLibelle['ja'] like ‘%liz%’
works.
Why ? Any idea ?
Cu Barbs.