David Higgs
Programmer
I am trying to update a MySQL Table from changes made in a VFP Cursor.
The following code updates the field "Call_160" in Cursor "curLarge_Squares" with "Test".
I would now like to update the MySQL Database to match the VFP Cursor but I am not too sure how to proceed.
Any help would be much appreciated.
Regards,
David.
Recreational Developer / End User of VFP.
The following code updates the field "Call_160" in Cursor "curLarge_Squares" with "Test".
Code:
SQLEXEC(SQLCONN,'SELECT * FROM &TBL_WAB_Large_sq ','curLarge_Squares')
INDEX on LG_SQUARE TAG lg_square
CURSORSETPROP("AutoIncError", .F. , "curLarge_Squares")
SET MULTILOCKS ON
=CURSORSETPROP("Buffering", 5, "curLarge_Squares")
GOTO TOP
Replace Call_160 with "TEST"
BROWSE
=TABLEUPDATE()
I would now like to update the MySQL Database to match the VFP Cursor but I am not too sure how to proceed.
Any help would be much appreciated.
Regards,
David.
Recreational Developer / End User of VFP.