Can we double-check to make sure that the 4.5 Docs have the follwoing updated (from the 4.23 Document).
Code:
$Rc = Execute( ‘? "This is a demo of the Execute() function"’ )
$Rc = Execute( ‘$$X = 10’ ) ; note the extra ‘$’
$Rc = Execute( ‘$$X = ’ + @USERID )
To be -
Code:
$Rc = Execute( '? "This is a demo of the Execute() function"' )
$Rc = Execute( '$$X = 10' ) ; note the extra '$'
$Rc = Execute( '$$X = ' + @USERID )
Thanks,
Kent