Subject | RE: [ib-support] Procedures and transactions |
---|---|
Author | Gerhardus Geldenhuis |
Post date | 2001-11-26T15:07:42Z |
Hi
I just read the embedded sql guide about sp's and transactions.
It almost answers my question but some verification would be
appreciated. If the sp gets called by the db itself what is the
default transaction and how would you change it. Eg If I call
a sp via trigger.
Groete
Gerhardsu
I just read the embedded sql guide about sp's and transactions.
It almost answers my question but some verification would be
appreciated. If the sp gets called by the db itself what is the
default transaction and how would you change it. Eg If I call
a sp via trigger.
Groete
Gerhardsu
> Hi
> My scenario will explain the best.
>
> procedure dosomething
> for select * from TableA do
> //externally somebody adds/remove/change something to tableA.
> //I do the the same selection again.
> for select * from TableA do
>
> will the second for loops be the same as the first one.
> How does transactions works in the context of stored procedures?
>
> Groete
> Gerhardus