in reply to Cannot Read Back Record After Updating in Class::DBI

it's almost as if in the process of all our flailing we did something that somehow enabled transaction processing and that our record is locked until the object goes out of scope and commits.
Um, have you tried using the DBI's "commit" call immediately after doing the update (before you query for the item that was just updated)?
  • Comment on Re: Cannot Read Back Record After Updating in Class::DBI

Replies are listed 'Best First'.
Re^2: Cannot Read Back Record After Updating in Class::DBI
by Wally Hartshorn (Hermit) on Jul 16, 2004 at 20:38 UTC
    have you tried using the DBI's "commit" call immediately after doing the update

    Assuming that all I would need to do is add $order->commit;, yes, I tried that. No change in behavior.

    Wally Hartshorn