我有一个Foxpro.DBF文件。我正在使用OLEDB驱动程序来读取.DBF文件。我可以查询DBF并使用它的.CDX索引文件(因为它是自动打开的)。我的问题是,我想用.NDX索引文件(打开.DBF时不会自动打开)来查询它。如何使用OLEDB驱动程序在C#中打开.NDX文件,因为DBF非常大,无法搜索没有索引的记录?谢谢大家!这是我用来读取DBF的代码。
OleDbConnection oleDbConnection = null;
try
{
DataTable resultTable = new DataTable();
using (oleDbConnection = new OleDbConnection("Provider=VFPOLEDB.1;Data Source=P:\Test\DSPC-1.DBF;Exclusive=No"))
{
oleDbConnection.Open();
if (oleDbConnection.State == ConnectionState.Open)
{
OleDbDataAdapter dataApdapter = new OleDbDataAdapter();
OleDbCommand command = oleDbConnection.CreateCommand();
string selectCmd = @"select * from P:TestDSPC-1 where dp_file = '860003'";
command.CommandType = CommandType.Text;
command.CommandText = selectCmd;
dataApdapter.SelectCommand = command;
dataApdapter.Fill(resultTable);
foreach(DataRow row in resultTable.Rows)
{
//Write the data of each record
}
}
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
finally
{
try
{
oleDbConnection.Close();
}
catch (Exception e)
{
Console.WriteLine("Failed to close Oledb connection: " + e.Message);
}
}
ndx文件默认情况下不会打开,而且这些都已经成为过去了,为什么不简单地将索引添加到CDX中呢。如果这不是一个选项,那么DRapp的ExecScript建议就是你可以做的。他非常接近。以下是如何做到这一点:
string myCommand = @"Use ('P:TestDSPC-1') alias myData
Set Index To ('P:TestDSPC-1_Custom.NDX')
select * from myData ;
where dp_file = '860003' ;
into cursor crsResult ;
nofilter
SetResultset('crsResult')";
DataTable resultTable = new DataTable();
using (oleDbConnection = new OleDbConnection(@"Provider=VFPOLEDB;Data Source=P:Test"))
{
oleDbConnection.Open();
OleDbCommand command = new OleDbCommand("ExecScript", oleDbConnection);
command.CommandType = CommandType.StoredProcedure;
command.Parameters.AddWithValue("code", myCommand);
resultTable.Load(cmd.ExecuteReader());
oleDbConnection.Close();
}
您的连接字符串应该只引用.dbf文件所在的PATH。
然后,您的查询仅根据表名。
new OleDbConnection("Provider=VFPOLEDB.1;Data Source=P:\Test\;Exclusive=No"))
selectCmd = @"select * from DSPC-1 where dp_file = '860003'";
至于使用.NDX,它是如何/在哪里创建的。。。那是你正在使用Visual Foxpro驱动程序的旧dBASE文件吗?
如果它是一个单独的文件,那么您可能需要通过ExecScript()显式地首先打开带有索引的文件,然后运行查询。这只是一个带有固定值的样本。您可能必须对其进行参数化,否则您将对sql注入持开放态度。
cmd.CommandText = string.Format(
@"EXECSCRIPT('
USE DSPC-1 INDEX YourDSPC-1.NDX
SELECT * from DSPC-1 where dp_file = '860003'" );
此外,您可能对表名的连字符有问题,您可能需要将其括在[方括号]中,但如果有问题,则不为正。