hibernate学习笔记(传智播客)(2)-2010-8-26

1.hibernate实体映射文件中字段或实体名与数据库关键字冲突怎么办?

      <property type="string"  name="username" column="anothername" >

修改即可,或者加``号,就是波浪线键的那个符号。

2.

按条件查询,可以为参数用:起个别名,也可以用?。

Session session = null;
        session = HibernateSessionFactory.getSession();
        String hql ="from User u where u.username = :username and u.password = :password";
        Query query = session.createQuery(hql);
        query.setString("username",name);
        query.setString("password",password);
        User u = (User)query.list().get(0);
        System.out.println(u.getId());
        session.close();

 

 

你可能感兴趣的:(hibernate学习笔记(传智播客)(2)-2010-8-26)