EntityModeler - ERPrototypes - Oracle - generated code doesn't handle CLOB column

2010-02-17 Thread Mark Ritchie
Hi Everyone! My EOModel is using ERPrototypes with EOJDBCOraclePrototypes selected. I have a column set to varcharLarge and when I generate the migration I get: ... personTable.newStringColumn(longName, false); ... That statement results in SQL which is invalid in Oracle:

Re: EntityModeler - ERPrototypes - Oracle - generated code doesn't handle CLOB column

2010-02-17 Thread Mike Schrag
Hmm varcharLarge is a weird one. It seems like maybe it should be calling newLargeStringColumn and that migration for Oracle should use a CLOB. It seems weird that Oracle's definition for longText is BLOB and not CLOB, too. The relationship between longText and varcharLarge is unclear to

Re: EntityModeler - ERPrototypes - Oracle - generated code doesn't handle CLOB column

2010-02-17 Thread Mark Ritchie
On 17/Feb/2010, at 4:25 PM, Mike Schrag wrote: Hmm varcharLarge is a weird one. It seems like maybe it should be calling newLargeStringColumn and that migration for Oracle should use a CLOB. I'm ok with that! That I can make work! ;-) It seems weird that Oracle's definition for longText