diff options
author | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2014-07-07 10:33:51 +0200 |
---|---|---|
committer | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2014-07-07 10:33:51 +0200 |
commit | f595cb0d46358e44fad838dd01a449e40c52e18b (patch) | |
tree | 50c8e78930be5104fa4a5587d249b21bd5c8a8ac /id/server/moa-id-commons | |
parent | 5e77090ce5f718f5d6c50e4d2e2a2337a92e91a6 (diff) | |
download | moa-id-spss-f595cb0d46358e44fad838dd01a449e40c52e18b.tar.gz moa-id-spss-f595cb0d46358e44fad838dd01a449e40c52e18b.tar.bz2 moa-id-spss-f595cb0d46358e44fad838dd01a449e40c52e18b.zip |
fixed many-to-many sql syntax hibernate problem with linux mysqlserver
Diffstat (limited to 'id/server/moa-id-commons')
-rw-r--r-- | id/server/moa-id-commons/src/main/resources/config/bindings.xjb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/id/server/moa-id-commons/src/main/resources/config/bindings.xjb b/id/server/moa-id-commons/src/main/resources/config/bindings.xjb index 43fe21465..21714849b 100644 --- a/id/server/moa-id-commons/src/main/resources/config/bindings.xjb +++ b/id/server/moa-id-commons/src/main/resources/config/bindings.xjb @@ -17,7 +17,7 @@ <jaxb:bindings schemaLocation="moaid_config_2.0.xsd" node="/xsd:schema/xsd:element[@name='C-PEPS']//xsd:element[@ref='OA_STORK']"> <hj:many-to-many name="OA_STORK"> - <orm:join-table name="OA_C-PEPS"> + <orm:join-table name="OA_CPEPS"> <orm:join-column name="aid" referenced-column-name="hjid" /> <orm:inverse-join-column name="bid" referenced-column-name="hjid" /> </orm:join-table> @@ -25,7 +25,7 @@ </jaxb:bindings> <jaxb:bindings schemaLocation="moaid_config_2.0.xsd" node="/xsd:schema/xsd:element[@name='OA_STORK']//xsd:element[@ref='C-PEPS']"> - <hj:many-to-many name="C-PEPS" mappedBy="OA_STORK"> + <hj:many-to-many name="CPEPS" mappedBy="OA_STORK"> <hj:cascade> <hj:cascade-persist/> </hj:cascade> |