tagged [oledb]

When reading a CSV file using a DataReader and the OLEDB Jet data provider, how can I control column data types?

When reading a CSV file using a DataReader and the OLEDB Jet data provider, how can I control column data types? In my C# application I am using the Microsoft Jet OLEDB data provider to read a CSV fil...

22 Sep at 15:45

SEHException on OleDb connection open

SEHException on OleDb connection open I'm developing a small application that will simplify logging, it does so by adding some inputs to an MS Access database through OleDB. ``` let private conn = new...

22 Jun at 12:46

Parsing CSV using OleDb using C#

Parsing CSV using OleDb using C# I know this topic is done to death but I am at wits end. I need to parse a csv. It's a pretty average CSV and the parsing logic has been written using OleDB by another...

25 Jul at 08:48

DataAdapter.Fill(Dataset)

DataAdapter.Fill(Dataset) i try to get some Data from a Access Database via OleDB in a `DataSet`. But the `DataSet` is empty after the `Fill()` method. The same statement works and return 1 row when i...

Microsoft.ACE.OLEDB.12.0 provider is not registered

Microsoft.ACE.OLEDB.12.0 provider is not registered I have a Visual Studio 2008 solution with two projects (a Word-Template project and a VB.Net console application for testing). Both projects referen...

Get a list of all Access ACE.OLEDB drivers installed on the system

Get a list of all Access ACE.OLEDB drivers installed on the system Using the following code I can enumerate the OLEDB providers registered on my system ``` static void DisplayData() { var reader = Ol...

6 Feb at 05:2

The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine (server)

The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine (server) I know that is this question has dozen of answers and posts, but nothing works for me. I have my MVC 5 applicati...

13 Oct at 17:10