1. 程式人生 > >C#下操作Visual Fox資料庫

C#下操作Visual Fox資料庫

最近有個專案需要操作Visual Fox資料庫 .net平臺若是需要操作資料庫需要安裝一個類似於操作工具的軟體,最後我會新增下載地址,沒想到vf資料庫現在還有這麼多應用,這個資料庫我上初中的時候就見過了,現在想想大概是十幾年之前了吧。

迴歸正題

安裝工具之後在C#下操作程式碼如下所示:

 public static DataSet ReturnDataset()
        {
            //Console.WriteLine(AppDomain.CurrentDomain.BaseDirectory);
            string strConn = @"Provider=vfpoledb;Data Source=" + AppDomain.CurrentDomain.BaseDirectory + ";Collating Sequence=machine;TABLEVALIDATE=0";
            using (OleDbConnection myConnection = new OleDbConnection(strConn))
            {
                myConnection.Open();
                OleDbDataAdapter adpt = new OleDbDataAdapter("select * from chaobiaogudong.dbf", myConnection);
                DataSet mySet = new DataSet();
                adpt.Fill(mySet);
                myConnection.Close();
                return mySet;
            }
        }

下載地址可以到本人的上傳資源裡邊找 寫的很詳細了