bkmr_77 wrote:
Sorry for not being more detailed.
I meant try to verify the Connection object from within your code. For example, within the java file com.cw.portal.tmt.business.CustomerDAOHibernateImpl and findAllCustomers() method you would be creating Hibernate Session object. Check to see if the session.connection() is returning an object and try to execute the regular JDBC statments. And verify if everything is working normally with this approach.
I tried with that option as well but it seems the Database table & column name are in double quotes for e.g.
TableName = "Customers"
ColumnName = "CustomerName"
From JDBC if SQL is
select * from "Customers" it WORKS
But if SQL is
select * from Customers it dosen't WORK
Check "Customers" table in double quote...
Can someone suggest if we can configure Hibernate to take Tablename and column names with in double quotes.
Your help is highly appreciated....