Joined: 15 Jun 2005 Posts: 163 Location: Massachusetts
You could try doing the insert within the stored Proc all in the same transaction... Send the parameters for insert as IN variables for the stored proc.
Use CreateSP attribute in the BO for invoking the SP using JDBC adapter.
Code:
CREATE OR REPLACE PROCEDURE XYZ (parms)
AS
BEGIN
Insert into table
Exec your stored proc code
COMMIT;
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum