Hi,

I try to create my test application with ROO.
When I use HYPERSONIC_IN_MEMORY DB - application work right.
When I use ORACLE DB - application doesn't work at all.
I can't view and insert rows.
I use next scripts to create my example:

Example HYPERSONIC_IN_MEMORY DB:
Code:
project --topLevelPackage com.springsource.roo.accHyp
persistence setup --provider HIBERNATE --database HYPERSONIC_IN_MEMORY 

entity --class ~.domain.Account --testAutomatically
field number --fieldName branchid --notNull --type java.lang.Integer
field string --fieldName acc --notNull --sizeMin 6

perform tests
controller all --package ~.web
perform eclipse
exit
Example Oracle DB:
Code:
project --topLevelPackage com.springsource.roo.accOra
persistence setup --provider HIBERNATE --database ORACLE --databaseName zoo --userName 17001 --password 1

entity --class ~.domain.Account --testAutomatically
field number --fieldName branchid --notNull --type java.lang.Integer
field string --fieldName acc --notNull --sizeMin 6

perform tests
controller all --package ~.web
perform eclipse
exit

I use
Spring Roo 1.0.2.RELEASE [rev 638]
Spring Roo 1.1.0.M1 [rev 3a0b8a3]
with practilally the same results.

How to make my oracle application works???

Paul