I try to deploy existing ( worked on 3.2.3) code to 3.2.4
and found this problem while EJB-QL compiling. This is old code

  | <!--
  |     Old variant worked in 3.2.3 and NOT works in 3.2.4
  | -->
  |     SELECT OBJECT(e)
  |     FROM employee e
  |     WHERE e.name IS NULL
  | <!--
  |     Old variant worked in 3.2.3 and NOT works in 3.2.4
  | -->
  |     SELECT OBJECT(e) FROM employee e
  |     WHERE e.name IS NULL
  | 
Now i must to change ALL my EJB-QL querys to this type ( all statement must be in ONE 
string):

  | <!--
  |     New variant worked in both versions
  | -->
  |     SELECT OBJECT(e) FROM employee e WHERE e.name IS NULL
  | 

Have ideas ?

Thanks

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840097#3840097

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840097


-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to