Guest User

Untitled

a guest
Nov 16th, 2018
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.65 KB | None | 0 0
  1. nov 16, 2018 11:11:19 AM org.hibernate.Version logVersion
  2. INFO: HHH000412: Hibernate Core {5.3.7.Final}
  3. nov 16, 2018 11:11:19 AM org.hibernate.cfg.Environment <clinit>
  4. INFO: HHH000206: hibernate.properties not found
  5. nov 16, 2018 11:11:21 AM org.hibernate.annotations.common.reflection.java.JavaReflectionManager <clinit>
  6. INFO: HCANN000001: Hibernate Commons Annotations {5.0.4.Final}
  7. nov 16, 2018 11:11:21 AM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure
  8. WARN: HHH10001002: Using Hibernate built-in connection pool (not for production use!)
  9. nov 16, 2018 11:11:21 AM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl buildCreator
  10. INFO: HHH10001005: using driver [org.postgresql.Driver] at URL [jdbc:postgresql://localhost:5432/MUTUAL_SOL_DE_MAYO]
  11. nov 16, 2018 11:11:21 AM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl buildCreator
  12. INFO: HHH10001001: Connection properties: {user=postgres, password=****}
  13. nov 16, 2018 11:11:21 AM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl buildCreator
  14. INFO: HHH10001003: Autocommit mode: false
  15. nov 16, 2018 11:11:21 AM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl$PooledConnections <init>
  16. INFO: HHH000115: Hibernate connection pool size: 20 (min=1)
  17. nov 16, 2018 11:11:21 AM org.hibernate.dialect.Dialect <init>
  18. INFO: HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL95Dialect
  19. nov 16, 2018 11:11:22 AM org.hibernate.engine.jdbc.env.internal.LobCreatorBuilderImpl useContextualLobCreation
  20. INFO: HHH000424: Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException
  21. nov 16, 2018 11:11:22 AM org.hibernate.type.BasicTypeRegistry register
  22. INFO: HHH000270: Type registration [java.util.UUID] overrides previous : org.hibernate.type.UUIDBinaryType@749c877b
  23. nov 16, 2018 11:11:23 AM org.hibernate.hql.internal.QueryTranslatorFactoryInitiator initiateService
  24. INFO: HHH000397: Using ASTQueryTranslatorFactory
  25. Hibernate: select socio0_.id_socio as id_socio1_13_, socio0_.tipo_doc as tipo_doc2_13_, socio0_.nro_doc as nro_doc3_13_, socio0_.numero_socio as numero_s4_13_ from socio socio0_
  26. nov 16, 2018 11:11:24 AM org.hibernate.engine.jdbc.spi.SqlExceptionHelper logExceptions
  27. WARN: SQL Error: 0, SQLState: 42P01
  28. nov 16, 2018 11:11:24 AM org.hibernate.engine.jdbc.spi.SqlExceptionHelper logExceptions
  29. ERROR: ERROR: no existe la relación «socio»
  30. Position: 154
  31. org.hibernate.exception.SQLGrammarException: could not extract ResultSet
  32. Exception in thread "main" javax.persistence.PersistenceException: org.hibernate.exception.SQLGrammarException: could not extract ResultSet
  33. at org.hibernate.internal.ExceptionConverterImpl.convert(ExceptionConverterImpl.java:154)
  34. at org.hibernate.internal.ExceptionConverterImpl.convert(ExceptionConverterImpl.java:181)
  35. at org.hibernate.query.internal.AbstractProducedQuery.list(AbstractProducedQuery.java:1514)
  36. at org.hibernate.query.Query.getResultList(Query.java:135)
  37. at business.VerPrestamo.getPrestamos(VerPrestamo.java:28)
  38. at view.vista.showPrestamosPsql(vista.java:229)
  39. at view.vista.switchear(vista.java:76)
  40. at view.vista.showMenu(vista.java:44)
  41. at view.vista.main(vista.java:20)
  42. Caused by: org.hibernate.exception.SQLGrammarException: could not extract ResultSet
  43. at org.hibernate.exception.internal.SQLStateConversionDelegate.convert(SQLStateConversionDelegate.java:106)
  44. at org.hibernate.exception.internal.StandardSQLExceptionConverter.convert(StandardSQLExceptionConverter.java:42)
  45. at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:113)
  46. at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:99)
  47. at org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.extract(ResultSetReturnImpl.java:69)
  48. at org.hibernate.loader.Loader.getResultSet(Loader.java:2167)
  49. at org.hibernate.loader.Loader.executeQueryStatement(Loader.java:1930)
  50. at org.hibernate.loader.Loader.executeQueryStatement(Loader.java:1892)
  51. at org.hibernate.loader.Loader.doQuery(Loader.java:937)
  52. at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:340)
  53. at org.hibernate.loader.Loader.doList(Loader.java:2689)
  54. at org.hibernate.loader.Loader.doList(Loader.java:2672)
  55. at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2506)
  56. at org.hibernate.loader.Loader.list(Loader.java:2501)
  57. at org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:504)
  58. at org.hibernate.hql.internal.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:395)
  59. at org.hibernate.engine.query.spi.HQLQueryPlan.performList(HQLQueryPlan.java:220)
  60. at org.hibernate.internal.SessionImpl.list(SessionImpl.java:1508)
  61. at org.hibernate.query.internal.AbstractProducedQuery.doList(AbstractProducedQuery.java:1537)
  62. at org.hibernate.query.internal.AbstractProducedQuery.list(AbstractProducedQuery.java:1505)
  63. ... 6 more
  64. Caused by: org.postgresql.util.PSQLException: ERROR: no existe la relación «socio»
  65. Position: 154
  66. at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2453)
  67. at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2153)
  68. at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:286)
  69. at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:432)
  70. at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:358)
  71. at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:171)
  72. at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:119)
  73. at org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.extract(ResultSetReturnImpl.java:60)
  74. ... 21 more
Add Comment
Please, Sign In to add comment