Tagged Questions
3
votes
3answers
182 views
How do I use an ADO.NET managed provider in Excel?
I have an ADO.NET Managed Data Provider that is registered in machine.config in DbProviderFactory - It is available for use from, say, Analysis Services, so I know it is correctly registered.
...
1
vote
2answers
1k views
OleDbConnection.Open() throws a “No error message available” error before even contacting the SQL Server
Using a connection string of
"Provider=SQLOLEDB;Data Source=localhost;User ID=foo;password=bar;Database=CodeLists;Pooling=true;Min Pool Size=20;Max Pool Size=30;"
I get the following stack trace
...
0
votes
1answer
298 views
MDAC OLEDB Command Prompt 32-Bit Problem
A couple years ago I wrote a C#.NET program that used Microsoft ACE and JET OLEDB to convert Excel spreadsheets to CSV files. Recently we upgraded to a Windows Server 2008 x64 server. Since JET was ...
0
votes
1answer
928 views
Microsoft Access - The 'Miccrosoft.Jet.OLEDB.4.0' provider is not registered on the local machine
I get the following error:
The 'Miccrosoft.Jet.OLEDB.4.0' provider is not registered on the local machine
When I run this code:
string dbConn = @"Provider=Miccrosoft.Jet.OLEDB.4.0;Data ...