I am using Native hibernate query to get data from database.
here is my code
String sqlQuery="select * from testTable"
Query query = informixSessionFactory.getCurrentSession()
.createSQLQuery(sql);
List test=query.list();
It executes fine but when i checks the value in list i found that it takes the datatype as character
insted of String
, It displays first character
only. please help