Eu estou utilizando o Oracle 10G, e criei no mesmo uma tabela chamada RegistroAtendimento.
Quando executo a classe ele da o seguinte erro dizendo que a tabela não existe.
[b]
org.hibernate.exception.SQLGrammarException: Could not execute JDBC batch update
at org.hibernate.exception.ErrorCodeConverter.convert(ErrorCodeConverter.java:70)
at org.hibernate.exception.JDBCExceptionHelper.convert (JDBCExceptionHelper.java:43)
at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:181)
at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:226)
at org.hibernate.engine.ActionQueue.executeActions (ActionQueue.java:136)
at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:274)
at org.hibernate.event.def.DefaultFlushEventListener.onFlush( DefaultFlushEventListener.java:27)
at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:730)
at org.hibernate.impl.SessionImpl.managedFlush(SessionImpl.java:324)
at org.hibernate.transaction.JDBCTransaction.commit (JDBCTransaction.java:86)
at aw.hibernate.cap1.TesteCriacao.main(TesteCriacao.java:56)
Caused by: java.sql.BatchUpdateException: ORA-00942: a tabela ou view não existe
at oracle.jdbc.driver.DatabaseError.throwBatchUpdateException(DatabaseError.java:343)
at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:10698)
at org.hibernate.jdbc.BatchingBatcher.doExecuteBatch(BatchingBatcher.java:57)
at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:174)
... 8 more
[/b]
Porque ele dá esse erro, a tabela existe no banco.
Ai eu coloquei a seguinte linha no meu arquivo de configuração
<property name=“hibernate.hbm2ddl.auto”>update</property>
O erro parou de dar, mas ele cria no banco de dados uma tabela chamada REGISTROATENDIMENTO, com os 2 objetos inseridos e a primarykey 15 e 16 respectivamentes.