MyEclipse Creating Hibernate projects

Source: Internet
Author: User

To create a database:

CREATE TABLE Books (id INT PRIMARY KEY auto_increment,bookname varchar (), Bookprice varchar (40));

Test code: Inserting data into a data table books

/*
Package test;

Import org.hibernate.Session;
Import Org.hibernate.SessionFactory;
Import org.hibernate.Transaction;
Import org.hibernate.cfg.Configuration;

Import Pojo. Books;

public class MyTest {

 static Configuration cfg = null; static SessionFactory sessionFactory = null; public static void insert(){        cfg = new Configuration();    cfg.configure();    sessionFactory = cfg.buildSessionFactory();        Configuration cfg = new Configuration();    cfg.configure();    SessionFactory sessionFactory = cfg.buildSessionFactory();      Session session = sessionFactory.openSession();    Transaction tx = session.beginTransaction();     Books book = new Books();           book.setBookname("语文");     book.setBookprice("18元");          //调用session的方法实现添加    session.save(book);    

The sixth step commits the transaction
Tx.commit ();

Step seventh Close the resource
Session.close ();
Sessionfactory.close ();

}public static void main(String[] args){    insert();}

}
*/

MyEclipse Creating Hibernate projects

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.