0 Replies Latest reply on Jan 19, 2005 6:48 AM by normann

    Illegal table names?

    normann

      After upgrading to JBoss 3.2.6 from 3.2.3, my SizeEJB (CMP) is deployed under table name "xsize" instead of "size". Since I already have my "size" table, I wanted to force the CMP engine to use that, so I added the following to my jbosscmp-jdbc.xml:

      <entity>
       <ejb-name>Size</ejb-name>
       <remove-table>false</remove-table>
       <table-name>size</table-name>
       <cmp-field>
       <field-name>id</field-name>
       </cmp-field>
      ...
       </entity>
      

      This changed nothing. JBoss still tried to create the table "xsize" when started. Anyone know the reason for this? Is "size" a forbidden table name in CMP or JBoss?