I want to do multi query with dbase/dbf database with .net library.
I don't want to use oledb because my record is three hundred thousand and I want the data table in datagridview. I need a fast library please recommend? Thanks roy
Imports DbfDataReader
Imports System.IO
Public Class Form1
Dim dbfPath = "C:\Users\Administrator\Desktop\IFG.DBF"
Dim options = New DbfDataReaderOptions With {
.SkipDeletedRecords = True,
.Encoding = EncodingProvider.UTF8
}
End Class