Hi,
I am using Eclipse, In the Database Developement perspective i can' t see my table although in the console it shows that the table is created and the insert is validated
Code:
18:32:01,814 DEBUG JDBCTransaction:130 - commit
18:32:01,814 DEBUG AbstractFlushingEventListener:134 - processing flush-time cascades
18:32:01,814 DEBUG AbstractFlushingEventListener:177 - dirty checking collections
18:32:01,814 DEBUG AbstractFlushingEventListener:108 - Flushed: 1 insertions, 0 updates, 0 deletions to 1 objects
18:32:01,814 DEBUG AbstractFlushingEventListener:114 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
18:32:01,814 DEBUG Printer:106 - listing entities:
18:32:01,824 DEBUG Printer:113 - com.jam.test.domain.Employee{empName=Jamila, empID=10}
18:32:01,824 DEBUG AbstractBatcher:410 - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
18:32:01,824 DEBUG SQL:111 - insert into TestSchema.EMPLOYEE (EMPNAME, EMPID) values (?, ?)
Hibernate: insert into TestSchema.EMPLOYEE (EMPNAME, EMPID) values (?, ?)
18:32:01,834 DEBUG AbstractBatcher:66 - Executing batch size: 1
18:32:01,834 DEBUG AbstractBatcher:418 - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
18:32:01,834 DEBUG JDBCTransaction:143 - committed JDBC Connection
18:32:01,834 DEBUG ConnectionManager:427 - aggressively releasing JDBC connection
18:32:01,834 DEBUG ConnectionManager:464 - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
Can anyone explain to me what happen ?