我正在尝试让这 3 个工作正常。如果我使用这个连接字符串
Driver={Microsoft dBASE Driver (*.dbf)};DriverID=277;OLE DB Services = -1;Extended Properties=dBase IV;Dbq=c:\mypath
像这样ADOTable1.Open
的操作非常快(好),但GetIndexNames
什么也不返回(坏)。
如果我改用这个连接字符串
Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=dBASE IV;OLE DB Services=-1;Data Source=c:\mypath
像这样ADOTable1.Open
的操作非常慢(坏),而GetIndexNames
返回索引名称的方式应该是(好)。
如何通过 ADO 获取 dBase 表的速度和索引信息?