我是靠谱客的博主 难过冥王星,最近开发中收集的这篇文章主要介绍unexpected token: * near line 1, column 8 [select * from t_user where 1=1],觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

unexpected token: * near line 1, column 8 [select * from t_user where 1=1]      和

users is not mapped 

这个错误可能是因为以下原因导致:

1.在hibernate里面写sql执行时候要用了session.createQuery(sql); 需要用session.createSQLQuerysql);

2.在hibernate里面写hql执行是误把hql写成了sql,比如说:select * , from 表名,hibernate框架操作数据库的核心就是:用操作数据对象代替操作表,给程序员的感觉是面向对象操作数据库。所以查询语句from后面接的不是表名称,而是javabean数据对象名。


映射对象 addEntity

String hql = "select b.* from book_info b,videos_info v where b.userId='"
+userId+ "' and b.videoId=v.global_id and v.video_type="+videoStatus;
Session session = getSession();
SQLQuery query = session.createSQLQuery(hql).addEntity(Book.class);

List<Book> list = (List<Book>)query.list();

String hql2 = "select b.* from book_info b,zhibo_video_info z where b.userId='"
+userId+ "' and b.videoId=z.videoId and z.status='"+videoStatus+"'";
query = session.createSQLQuery(hql2).addEntity(Book.class);
List<Book> list2 = (List<Book>)query.list();
if(list2==null || list2.size()<=0)
return list;
else if(list==null || list.size()<=0)
return list2;
else{
for(int i=0; i<list2.size(); i++){
list.add(list2.get(i));
}
return list;
}

最后

以上就是难过冥王星为你收集整理的unexpected token: * near line 1, column 8 [select * from t_user where 1=1]的全部内容,希望文章能够帮你解决unexpected token: * near line 1, column 8 [select * from t_user where 1=1]所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部