在.NET中数据用ODBC连接,为什么不能创建DBF文件,
源代码如下:(调试成功,运行没提示错误,就是没生成test14.dbf.
      string connect = "Driver={Microsoft Visual FoxPro Driver};SourceType=DBF;SourceDB=c:\\;";
      OdbcConnection myconn = new OdbcConnection(connect);
      string sqlt = "create table [test14.dbf](sno char(6),sname char(10),age numeric(3,0)) ";
       myconn.Open();
     OdbcCommand olec = new OdbcCommand(sqlt, myconn);        
        try
        {
             olec.ExecuteNonQuery();       }
        catch (Exception ex)
        {
            Response.Write(ex.ToString());
        }
        olec.Dispose();
        myconn.Close();