Subject Re: [IBO] IB_SQL Error
Author Marco Lauria
At 12.18 05/12/2001 +0200, you wrote:
>Hi
>
>I am trying to edit my table by IB_SQL, when I post it gives the following
>error
>
>ISC ERROR CODE:335544345
>
>ISC ERROR MESSAGE:
>lock conflict on no wait transaction
>deadlock
Some other statement in another transaction context
has modified the data you are posting....
so when you try to commit current transaction you get
a deadlock...
it's just normal.....
If you get it when you post i suppose
you are using an autocommit transaction for the IB_SQL
while some other statement is using a non autocommit transaction
that hasn't committed or rolled back either....
Regards
Marco