// OK:
CREATE TABLE TestTable1 (fld1 c(16))
/*
XSharp.Error: Syntax error in command:
CREATE TABLE (cFileName) (fld1 c(16))
*/
LOCAL cFileName AS STRING
cFileName := "C:\test\TestTable2"
CREATE TABLE (cFileName) (fld1 c(16))
/*
System.IO.FileNotFoundException
Could not find file 'C:\XIDE\Projects\VFP\Bin\Debug\C.DBF'.
*/
CREATE TABLE C:\test\TestTable3 (fld1 c(16))