I am running a fairly simple SQL Passthru command (see below) and am receiving the following error message when I try to access the result set (the 'BROWSE' command below):
No update tables are specified. Use the Tables property of the cursor (Error 1491).
What does this error mean and how can I resolve it?
Steve
No update tables are specified. Use the Tables property of the cursor (Error 1491).
Code:
nHandle = SQLCONNECT("SQLDatabase")
SQLSETPROP(nHandle,"Asynchronous", .F.)
cSql = "EXEC GetXML_DND_IRS"
nResult = SQLEXEC(nHandle,cSql,'XML_FILE')
BROWSE
What does this error mean and how can I resolve it?
Steve