I was reading below on onjava:
Auto-creating table: create table work_ejb_WorkHours (email
VARCHAR2(255) not null, monthEnding DATE not null, workHours
double precision null, trainingHours double precision null,
vacationHours double precision null, otherHours double precision
null, primary key (email, monthEnding))
Is it right that deploying CMP on an application server menas that containre will create temp tables in database where all sql is done
before data is written to real tables. Not read this anywher except when
I saw above extract from onjava on example to deploy CMP EJB.
Please clarify.