当前位置: 代码迷 >> J2EE >> hibernate中怎么执行show tables
  详细解决方案

hibernate中怎么执行show tables

热度:627   发布时间:2016-04-22 01:22:54.0
hibernate中如何执行show tables
如题:
Session session = HibernateSessionFactory.getSession();
List<?> list = session.createSQLQuery("show tables").list();
System.out.println(list);
报错:
Exception in thread "main" org.hibernate.exception.SQLGrammarException: could not execute query
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:90)
at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66)
at org.hibernate.loader.Loader.doList(Loader.java:2231)
at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2125)
at org.hibernate.loader.Loader.list(Loader.java:2120)
at org.hibernate.loader.custom.CustomLoader.list(CustomLoader.java:312)
at org.hibernate.impl.SessionImpl.listCustomQuery(SessionImpl.java:1722)
at org.hibernate.impl.AbstractSessionImpl.list(AbstractSessionImpl.java:165)
at org.hibernate.impl.SQLQueryImpl.list(SQLQueryImpl.java:175)
at com.zy.util.HibernateSessionFactory.main(HibernateSessionFactory.java:114)
Caused by: java.sql.SQLException: Column 'TABLE_NAME' not found.
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1055)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:926)
at com.mysql.jdbc.ResultSetImpl.findColumn(ResultSetImpl.java:1093)
at com.mysql.jdbc.ResultSetImpl.getString(ResultSetImpl.java:5488)
at org.hibernate.type.StringType.get(StringType.java:41)
at org.hibernate.type.NullableType.nullSafeGet(NullableType.java:184)
at org.hibernate.type.NullableType.nullSafeGet(NullableType.java:210)
at org.hibernate.loader.custom.CustomLoader$ScalarResultColumnProcessor.extract(CustomLoader.java:497)
at org.hibernate.loader.custom.CustomLoader$ResultRowProcessor.buildResultRow(CustomLoader.java:443)
at org.hibernate.loader.custom.CustomLoader.getResultColumnOrRow(CustomLoader.java:340)
at org.hibernate.loader.Loader.getRowFromResultSet(Loader.java:629)
at org.hibernate.loader.Loader.doQuery(Loader.java:724)
at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:259)
at org.hibernate.loader.Loader.doList(Loader.java:2228)
... 7 more


------解决方案--------------------
hibernate好像不是为这种需求设计的吧。。。。
------解决方案--------------------
Java code
List<?> list = session.createSQLQuery("show tables").list();
------解决方案--------------------
探讨
Java code

List<?> list = session.createSQLQuery("show tables").list();





有这种SQL语句??

查询当前用户的所有表:
select table_name from user_tables

------解决方案--------------------
不能这样查的。呵呵。。要用数据源查。。。
  相关解决方案