posted 16 years ago
Hi All,
I have to get data from two column of table. My table name is Employee_Det the fields in the table are ID,Name,Age,Deg. the query i am using to fetch ID and Name are as followes
Query qr = session.createSQLquery("select e.id,e.name from Employee_det as e").addEntity("e",empl.class)
but this query gives an error. I have to do this by using addEntity() method
Prem