Open MarioV-GH opened 1 month ago
For now you can make this with with the following UDC.
#command UPDATE <(a)> SET <(f1)> = <x1> [, <(fn)> = <xn>] ;
[WHERE <lfor>] ;
;
=> (<(a)>)->(DbEval( ;
{||DbAutoLock(), __FieldSet(<(f1)>,<x1>) [, __FieldSet(<(fn)>, <xn>)], DbAutoUnLock()}, ;
<{lfor}>))
Please note that the JOIN clause is not supported yet.
Describe the bug Support SQL Update (xsharp-error)
To Reproduce Code:
USING System USING System.Collections.Generic USING System.Text
FUNCTION check_cursor AS VOID create cursor abc (mkey i, mident c(10)) insert into abc (mkey,mident) values (1,"a") insert into abc (mkey,mident) values (2,"b") insert into abc (mkey,mident) values (3,"c")
RETURN Expected behavior Support VFP Update Command