用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”
谢谢
展开
 我来答
晴空万里飘雪
推荐于2017-10-11 · 超过44用户采纳过TA的回答
知道答主
回答量:167
采纳率:0%
帮助的人:109万
展开全部
不是有映射文件吗?
比如你的数据库表为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();
就是这样.
星河鹭起111
2012-03-31
知道答主
回答量:32
采纳率:0%
帮助的人:26.2万
展开全部
String hqlInsert = "insert into DelinquentAccount (id, name) select c.id, c.name from Customer c where ...";
int createdEntities = s.createQuery( hqlInsert )
.executeUpdate();

有 插入语句的 用这个好些
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式