perl dbi handlers interacting with each other -
I have a strange problem where I have 2 dBi handlers and they interact with each other in a non-obvious way are doing . Specifically, I set up 2 handlers, one for putting one, and one called a stored proc, and if I call them
$ spHandler-> Executed ($ cusip); $ InsertHandler- & gt; Execute ('2010-05-01', '36200A3C1', 595795, 'X', 3);
Then the insertion fails B / C of an exact error. If I execute only
$ insertHandler-> order ('2010-05-01', '36200A3C1', 595795, 'X', 3); $ SpHandler- & gt; Execution ($ CUSIP);
Then both of them work correctly
Is the resources here shared or something I do not know? I said that they want to be able to process the result of the accumulated process, hence the situation at this time is problematic.
Comments
Post a Comment