[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.rt.eclipselink] createquery
|
Hi all,
I get an error when I try to create a query:
Query query = entityManager.createQuery(sql);
.....
query.setParameter(i++, property1);
query.setParameter(i++, property2);
....
my sql string is:
"select this from CfgEntity as this where this.idCfg=? and this.cfgName=?"
The errors in the createQuery call are:
line 1:53 mismatched character ' ' expecting set '1'..'9'
line 1:72 mismatched character '<EOF>' expecting set '1'..'9'
Any helps?
BR,
Enrico