用hibernate的HQL怎么写一个插入语句
如题!比如一个SQLinsertintoAA(id,userName,password)VALUES('0001','Wang','123');我该怎么给他变成HQL呢如...
如题!
比如一个SQL
insert into AA (id,userName,password) VALUES ('0001','Wang','123');
我该怎么给他变成HQL呢
如何写呢?
谢谢
谢谢你
可是为什么我一写 “SessionFactory sf = new Configuration().configure().buildSessionFactory();”
在Configuration 就提示我“Cannot instantiate the type Configuration”
在configure 就提示我 “The method configure() is undefined for the type Configuration”
谢谢 展开
比如一个SQL
insert into AA (id,userName,password) VALUES ('0001','Wang','123');
我该怎么给他变成HQL呢
如何写呢?
谢谢
谢谢你
可是为什么我一写 “SessionFactory sf = new Configuration().configure().buildSessionFactory();”
在Configuration 就提示我“Cannot instantiate the type Configuration”
在configure 就提示我 “The method configure() is undefined for the type Configuration”
谢谢 展开
展开全部
不是有映射文件吗?
比如你的数据库表为student
那么的你就应该有hibernate.cfg.xml配置文件和他的映射文件hibernate.hbm.xml,最后还应该有一个student表的映射类student.java
这3个文件.
然后你建一个实现类studentInsert
实现是
SessionFactory sf = new Configuration().configure().buildSessionFactory();
Session session = sf.openSession();
Transaction tx = session.beginTransaction();
student st=new student();
st.setId("0001");
st.setUserName("Wang");
st.setpassWord("123");
session.save(st);
tx.commit();
session.close();
就是这样.
比如你的数据库表为student
那么的你就应该有hibernate.cfg.xml配置文件和他的映射文件hibernate.hbm.xml,最后还应该有一个student表的映射类student.java
这3个文件.
然后你建一个实现类studentInsert
实现是
SessionFactory sf = new Configuration().configure().buildSessionFactory();
Session session = sf.openSession();
Transaction tx = session.beginTransaction();
student st=new student();
st.setId("0001");
st.setUserName("Wang");
st.setpassWord("123");
session.save(st);
tx.commit();
session.close();
就是这样.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询