Thanks for the Reply .,
One More Clarification Needed - The Application was developed in
JBOSS - 3.2.1
JDK - 1.4
Pgsql - 7.4.2
So when the Application was Deployed in the above Environment there is no such Problems , Only if we try to deploy under
JBOSS - 4.0.4
JDK - 1.5
Pgsql - 8.1.4
We are getting the Error as
" Closing a connection for you. Please close them yourself: . . org.jboss.resource.adapter.jdbc.WrappedConnection@cece16
java.lang.Throwable: STACKTRACE"
I would Appreciate if any one can help me on this issue.
Thanks in Advance
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3958785#3958785
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3958785
i have a update query
@NamedQuery(name = "com.app.ejb.entities.manageCustomer",
query = "Update Customer c Set c.dateBirth=:datebirth WHERE c.customerId = :login")
And i am executing Query like this
em.createNamedQuery("net.tss.app.ejb.entities.manageCustomer")
.setParameter("datebirth",customerDetails.getDateBirth())
.setParameter("login",customerDetails.getCustomerId()).executeUpdate();
Its working fine
but i am geting a Warning message
in jboss console
16:07:21,990 WARN [FromElementType] Using non-qualified column reference [dateB
irth -> ([dateBirth])]
16:07:21,990 WARN [FromElementType] Using non-qualified column reference [custo
merId -> ([customerId])]
anyone has a solution for this
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3958737#3958737
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3958737