当目录名称中没有空格时使用以下工作
对于字符串file1,它将使用字符串file2执行reader,它会创建一个异常吗?我需要访问一些客户端路径中有空格的文件夹。
file1 = "C:\\test1\\file.dbf";
file2 = "C:\\test 2\\file.dbf";
OdbcConnection Connection = new OdbcConnection();
Connection.ConnectionString = @"Driver={Microsoft Visual FoxPro Driver};Exclusive=No;SourceType=DBF;SourceDB=" + strFilename + ";";
Connection.Open();
OdbcCommand Command = Connection.CreateCommand();
Command.CommandText = @"SELECT * FROM " + file1; //Command.CommandText = @"SELECT * FROM " + file2;
一旦执行 Connection.Open(); 它打开正确,
一旦我们执行 OdbcDataReader Reader = Command.ExecuteReader();
我得到 {System.Data.Odbc.OdbcException:错误[42S02] [Microsoft] [ODBC Visual FoxPro驱动程序]文件'file2.dbf'不存在。
回答因为我没有足够的代表
感谢大家为我的问题提供解决方案。解决方案要求我放置完整路径(其中有空格)并使用@ char使其成为文字字符串。出于某种原因,通过使用转义字符(“\”“)引用来使其成为字面值并没有解决它。
总之,我在连接字符串和命令字符串中的路径前面使用了@。
strFilename = S.ImportFolder + "\\" +"file"+ ".dbf";
OdbcConnection Connection = new OdbcConnection();
Connection.ConnectionString = @"Driver={Microsoft Visual FoxPro Driver};Exclusive=No;SourceType=DBF;SourceDB="+@strFilename+";";
Connection.Open();
OdbcCommand Command = Connection.CreateCommand();
Command.CommandText = @"SELECT * FROM "+ @strFilename;
OdbcDataReader Reader = Command.ExecuteReader();
答案 0 :(得分:3)
您是否已尝试将路径引入引号?
Connection.ConnectionString = @"Driver={Microsoft Visual FoxPro Driver};Exclusive=No;SourceType=DBF;SourceDB=""" + strFilename + """;";