为什么HQL查询是一串数字

来源:3-4 Query接口应用编程示例--代码实现

294761325

2017-03-08 21:04

Hibernate: 

    select

        student0_.SID as SID1_1_,

        student0_.SNAME as SNAME2_1_,

        student0_.SEX as SEX3_1_,

        student0_.gid as gid4_1_ 

    from

        STUDENT student0_

[Student@4ddbbdf8, Student@1115ec15, Student@82ea68c]

[Student@4ddbbdf8, Student@1115ec15, Student@82ea68c]

[Student@4ddbbdf8, Student@1115ec15, Student@82ea68c]


写回答 关注

1回答

  • chapelin_wang
    2017-03-08 22:09:38
    已采纳

    因为HQL是基于对象查询,你做查询时,其实是对对象的操作。重写Stduent的toString()即可看到查询信息。初学,欢迎指正!

    294761...

    已经解决问题了 谢谢

    2017-03-11 14:19:24

    共 1 条回复 >

HQL数据查询基础

使用HQL从数据库中找到你要的数据,掌握了使用Hibernate

41151 学习 · 90 问题

查看课程

相似问题