Hi.
In my application, I have many to many relationship between my entity beans.
As you know, we use a link table for this relation, so I wrote the following in my jbosscmp-jdbc.xml:
But when running
JBoss 3.2.5 , it creates a table called :
cabinejb_reservationejb_cabins_reservationejb_cabins
(not RESERVATION_CABIN_LINK as I want).
So I used the following element :
<create-table>false</create-table>
And when running the application, I got an exception from JBoss indicates that table cabinejb_reservationejb_cabins_reservationejb_cabins doesn't exist..
Any ideas ??