Hello, I'm new to java Hibernate. So, there are many problems for me. I want to little helps from you guys..
Please tell me, how to get data via hibernate and add to the jList.
here is my code. but, I can't continue because i don't know....
Code:
Session sess = HibernateUtil.getSessionFactory().openSession();
Transaction tx = sess.beginTransaction();
List<ForexNews> fnews = sess.createQuery("from ForexNews where news_title = '"+jTextField1.getText()+"' ").list();
I want to add the object.getNewsId(); to jList. please tell me how to do this.....
thanks a lot guys...