Hallo list, I'm writing a Hibernate-dialect for a DBMS, and I can't understand what is the best way to do some things.
One of my questions: How can I configure in the dialect, that it must/must not use named prepared statements. For example, I have this in HQL: Query query = session.createQuery("update Student set studentName = :studentName" + " where studentId = :studentId"); query.setParameter("studentName", "Jack"); query.setParameter("studentId", 1); And in resulting SQL: update tutorials.student set STUDENT_NAME=? where STUDENT_ID=? Is it posible to use named prepared statements in the resulting SQL? And opposite: how do I say that my DBMS doesn't support prepared statements? Thank you very much! -- Igor Chubin _______________________________________________ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev