2 Replies Latest reply on Feb 27, 2006 11:46 AM by dornus

    EJB-QL for "select into outfile"

      How do I convert the following to work with EJB query language?

      something like this

       final Query q = em.createQuery(
       "select * into outfile 'c:\\blah\\blah.txt' " +
       "from MyTable o "
       );
       q.executeUpdate();