//读取 DBF 文件, 需要安装 VFPOLEDB.msi

下载

 

 

Provider=Microsoft.Jet.OLEDB.4.0;Data Source= C:\Microsoft Visual FoxPro OLE DB Provider\Samples\Northwind;
 Extended Properties='dBASE 5.0'";
objConn.Open();
OleDbCommand cmd
= new OleDbCommand();
cmd.CommandType
= CommandType.Text;
cmd.CommandText
= "select * from employeeterritories";//employeeterrITories.dbf
SQLada = new OleDbDataAdapter(cmd);

相关文章:

  • 2022-12-23
  • 2021-10-11
  • 2022-12-23
  • 2021-07-20
  • 2022-12-23
  • 2022-12-23
  • 2021-09-10
  • 2022-12-23
猜你喜欢
  • 2021-11-17
  • 2021-10-19
  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
  • 2021-08-28
  • 2021-11-10
相关资源
相似解决方案