Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Tableupdate error message. What does it mean?
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00492652
Message ID:
00492733
Views:
20
Hi!

You probably have a delete trigger in your database that attempts to lock a table. In addition, tables should be in 3-d or 5-th buffering mode, not in 2-nd or 4-th. Otherwise delete command will cause record locking, so transaction will not be able to lock a table for correct updates.

>I'm getting the following message from tableupdate:
>
>Illegal to attempt a file lock in a transaction after
>takin prior record locks.
>
>Here is the code...
>
>
>if messagebox('Delete order '+alltrim(order.nordernum)+' and all related order
>detail?',MB_YESNO,'Warning!')=IDYES then
>        select orderdet
>        delete for nordernum=order.nordernum
>        select order
>        delete next 1
>        begin transaction
>        if tableupdate(.t.,.t.,'order') and tableupdate(.t.,.t.,'orderdet') then
>          end transaction
>          thisform.release
>        else
>          rollback
>          oWFMaint.TableError
>          return
>        endif
>
>
>I can't see what is wrong.
Vlad Grynchyshyn, Project Manager, MCP
vgryn@yahoo.com
ICQ #10709245
The professional level of programmer could be determined by level of stupidity of his/her bugs

It is not appropriate to say that question is "foolish". There could be only foolish answers. Everybody passed period of time when knows nothing about something.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform