I\'m using SQL command within FoxPro 6.0 command window, and encountered the \"File access is denied.\"
My SQL command is:
SELECT * FROM main.dbf WHERE C
Maybe you need to open the DBF file in exclusive mode:
SET EXCLUSIVE ON
Then perform your SQL query.