Hey all,
Got Transfer up and running, but when I try to set up a onetomany
relationship, and do a save() on the "transaction" transfer object, I
get the error referenced in the subject line. When I comment out the
onetomany xml it works fine. Below is the pertinent xml:
<object name="system" table="Systems">
<id name="systemid" type="numeric" />
<property name="systemname" type="string" />
<onetomany name="transactions">
<link to="transaction" column="creatorsystemid"/>
<collection type="array">
</collection>
</onetomany>
</object>
<object name="transaction" table="Transactions">
<id name="transactionid" type="numeric" />
<property name="transactiontimestamp" type="date" />
<property name="transactiontype" type="string" />
<property name="transactionpayload" type="string" />
<property name="creatorsystemid" type="numeric" />
</object>
Anything jump out?
--~--~---------~--~----~------------~-------~--~----~
Before posting questions to the group please read:
http://groups.google.com/group/transfer-dev/web/how-to-ask-support-questions-on-transfer
You received this message because you are subscribed to the Google Groups
"transfer-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/transfer-dev?hl=en
-~----------~----~----~----~------~----~------~--~---