Lev wrote:
>> I use this property in my persistance.xml to update tables when I deploy
>> my application:
>>
>> <!-- e.g. validate | update | create | create-drop -->
>> <property name="hibernate.hbm2ddl.auto" value="update" />
> 
> i have tried setting the property "hibernate.hbm2ddl.auto" to
> both "update" and "create-drop".
> 
> however, in both cases, if i drop a table and then subsequently
> try to access the table using a DAO, i receive an exception such
> as:
> 
> ERROR JDBCExceptionReporter:101 - Table 'dao_stripes.MockEntity' doesn't exist
> 
> i was under the impression that table would be automatically
> recreated. is this not the case? if not, do i need to call a method
> to trigger the table creation?

The table is recreated when you deploy your application. So you need to
do that.
I assume that you are using an IDE that allows you to do this with one
click and that it is ok for your purpose to do that...
> 
> thanks for your help,
> lev

Thomas

------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to