Package org.hibernate.test.dialect.function

Examples of org.hibernate.test.dialect.function.Product


  }
 
  public void testBasicOperations() {
    // save and query a single entity:
    // enough to know the configuration is working.
    Product product = new Product();
    product.setLength( 100 );
    Session s = openSession();
    Transaction tx = s.beginTransaction();
    s.save( product );
    tx.commit();
    s.clear();
View Full Code Here

TOP

Related Classes of org.hibernate.test.dialect.function.Product

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.