The following code does execute but it produces an error message in IE that says "Unrecognized command verb". Any suggestions on how to fix?
<code>
execstr = "EXEC 'create " + session("fileloc") + cNewFileName + " from " + session("fileloc") + "liststru'"
oConn.Execute(execstr)
</code>
The database is VFP. It produces the new table and registers it with the database. But refuses to move past the Execute line.
<code>
execstr = "EXEC 'create " + session("fileloc") + cNewFileName + " from " + session("fileloc") + "liststru'"
oConn.Execute(execstr)
</code>
The database is VFP. It produces the new table and registers it with the database. But refuses to move past the Execute line.