how Multi query dbase/dbf with library.net IN VB.NET

184 Views Asked by At

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
0

There are 0 best solutions below