Package hf

Examples of hf.Documents


                session.beginTransaction();
                Query q = session.createQuery("from Documents");
                List resultList = q.list();

                for (Object o : resultList) {
                    Documents actor = (Documents) o;
                    System.out.println(actor.getTitle());
                }

                Query q1 = session.createSQLQuery("update Documents set title='qwe' where id=1;");
                q1.executeUpdate();
View Full Code Here

TOP

Related Classes of hf.Documents

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.