Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Guys,
I am using the following script
sub Update
set docprop = ActiveDocument.GetProperties
docprop.EnableDynamicDataUpdate=true
ActiveDocument.SetProperties docprop
SET Result = ActiveDocument.DynamicUpdateCommand("UPDATE TEST SET B = 20 WHERE A = 2 ")
if Result = false then
MsgBox Result.ErrorMessage
end if
end sub
Once i execute this i am getting the error message as Table not found But i have checked fro the table
and all Grant rights is given to the table .And in my edit script i have the Connection string .Please
let me know what i am missing
Guys any help on the above issue