Re: log create table statements?

2007-01-31 Thread Dain Sundstrom
I'm dumb. I thought I was using hsqldb in memory only mode, but instead it was in file mode. -dain On Jan 31, 2007, at 6:33 AM, Kevin Sutter wrote: Another possibility is that you need to explicitly declare the classes that you want processed for automatic table creation via the ..class> e

Re: log create table statements?

2007-01-31 Thread Kevin Sutter
Another possibility is that you need to explicitly declare the classes that you want processed for automatic table creation via the .. elements. Scanning for available Entity classes won't work when attempting to auto create the tables. Kevin On 1/30/07, Marc Prud'hommeaux <[EMAIL PROTECTED]> w

Re: log create table statements?

2007-01-30 Thread Marc Prud'hommeaux
Dain- Odd ... you certainly should see the statements. Are you sure you aren't running against a database where the tables already exist (since OpenJPA won't try to create tables when they exist)? Can you see any SQL statements in the logged messages at all (e.g., when you run a query)? C

log create table statements?

2007-01-30 Thread Dain Sundstrom
I have openjpa setup to auto create my tables, and I see openjpa the tables using in my log, but I don't see the create table statements. I have this in my persistenc.xml file value="buildSchema(ForeignKeys=true)"/> I there some other property I need to set? -da