Hi guys, As discussed saturday evening, I need to implement a JDBC provisioning service. I'm interested in knowing your thoughts about a such type of destination service because I think it would require a multi requests compliant engine such as :
- INSERT INTO table1 ... - UPDATE SET insert_id='newly inserted object id' - INSERT INTO table2 ... - ... And then only at the end a transaction commit. But we are currently relying upon iBatis which can only handle a single request per descriptor (<statement id="..."> ... </statement>) , that is to say that it seems that you cannot describe multiple requests in a single queryForUpdate call. This means that it would be quite complicated to implement identifier or data reuse between different requests. I don't think that Hibernate will be easier for this issue, so do you have any idea about how we could implement such ongoing support ? Best regards, -- Sebastien BAHLOUL IAM and Security Solutions Manager LINAGORA : http://www.linagora.com/ Tel / Phone : +33 810 251 251 Mobile : +33 (0)6 45 63 27 39 74/80 rue Roque de Fillol 92800 Puteaux ----------- http://linid.org/ - http://linpki.org/ IAM and security Open Source projects _______________________________________________________________ Ldap Synchronization Connector (LSC) - http://lsc-project.org lsc-dev mailing list [email protected] http://lists.lsc-project.org/listinfo/lsc-dev

