· 9 years ago · May 25, 2017, 03:22 PM
1maj 25, 2017 5:21:25 PM org.hibernate.Version logVersion
2INFO: HHH000412: Hibernate Core {5.2.10.Final}
3maj 25, 2017 5:21:25 PM org.hibernate.cfg.Environment <clinit>
4INFO: HHH000206: hibernate.properties not found
5maj 25, 2017 5:21:25 PM org.hibernate.annotations.common.reflection.java.JavaReflectionManager <clinit>
6INFO: HCANN000001: Hibernate Commons Annotations {5.0.1.Final}
7maj 25, 2017 5:21:25 PM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure
8WARN: HHH10001002: Using Hibernate built-in connection pool (not for production use!)
9maj 25, 2017 5:21:25 PM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl buildCreator
10INFO: HHH10001005: using driver [org.h2.Driver] at URL [jdbc:h2:rental]
11maj 25, 2017 5:21:25 PM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl buildCreator
12INFO: HHH10001001: Connection properties: {user=, password=****}
13maj 25, 2017 5:21:25 PM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl buildCreator
14INFO: HHH10001003: Autocommit mode: false
15maj 25, 2017 5:21:25 PM org.hibernate.engine.jdbc.connections.internal.PooledConnections <init>
16INFO: HHH000115: Hibernate connection pool size: 1 (min=1)
17maj 25, 2017 5:21:26 PM org.hibernate.dialect.Dialect <init>
18INFO: HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
19maj 25, 2017 5:21:26 PM org.hibernate.engine.jdbc.env.internal.LobCreatorBuilderImpl useContextualLobCreation
20INFO: HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
21maj 25, 2017 5:21:26 PM org.hibernate.resource.transaction.backend.jdbc.internal.DdlTransactionIsolatorNonJtaImpl getIsolatedConnection
22INFO: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@56303b57] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode.
23Hibernate: drop table PUBLIC.Customer if exists
24Hibernate: drop table PUBLIC.Vehicle if exists
25maj 25, 2017 5:21:27 PM org.hibernate.resource.transaction.backend.jdbc.internal.DdlTransactionIsolatorNonJtaImpl getIsolatedConnection
26INFO: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@65fe9e33] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode.
27Hibernate: drop sequence if exists PUBLIC.hibernate_sequence
28Hibernate: create sequence PUBLIC.hibernate_sequence start with 1 increment by 1
29Hibernate: create table PUBLIC.Customer (IdC integer not null, Age integer, FirstName varchar(255), Surname varchar(255), primary key (IdC))
30Hibernate: create table PUBLIC.Vehicle (IdV integer not null, Model varchar(255), Plate varchar(255), Producer varchar(255), primary key (IdV))
31maj 25, 2017 5:21:27 PM org.hibernate.tool.schema.internal.SchemaCreatorImpl applyImportSources
32INFO: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@26bab2f1'
33Hibernate: call next value for PUBLIC.hibernate_sequence
34Hibernate: call next value for PUBLIC.hibernate_sequence
35Hibernate: insert into PUBLIC.Customer (Age, FirstName, Surname, IdC) values (?, ?, ?, ?)
36Hibernate: insert into PUBLIC.Customer (Age, FirstName, Surname, IdC) values (?, ?, ?, ?)
37maj 25, 2017 5:21:27 PM org.hibernate.hql.internal.QueryTranslatorFactoryInitiator initiateService
38INFO: HHH000397: Using ASTQueryTranslatorFactory
39Hibernate: select customer0_.IdC as IdC1_0_, customer0_.Age as Age2_0_, customer0_.FirstName as FirstNam3_0_, customer0_.Surname as Surname4_0_ from PUBLIC.Customer customer0_
401 Levi
412 Barto
42maj 25, 2017 5:21:27 PM org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl stop
43INFO: HHH10001008: Cleaning up connection pool [jdbc:h2:rental]