useing VFP7 frontend with a SQL backend
I am using a view to make modifications to some data. My TABLEUPDATE command hangs when it tries to run. If I put a SET STEP ON command immediately before the TABLEUPDATE statement, the debugger pops up and I can either RESUME or STEP INTO the code and the TABLEUPDATE statement fires correctly. Any suggestions?
I am using a view to make modifications to some data. My TABLEUPDATE command hangs when it tries to run. If I put a SET STEP ON command immediately before the TABLEUPDATE statement, the debugger pops up and I can either RESUME or STEP INTO the code and the TABLEUPDATE statement fires correctly. Any suggestions?
Code:
.
.
WAIT WINDOW NOWAIT "BEFORE TABLE UPDATE"
**** SET STEP ON && sometimes I enable this code by uncommenting it
TABLEUPDATE(1,.t.,"vMyView")
WAIT WINDOW NOWAIT "AFTER TABLE UPDATE"
.
.