views:

66

answers:

2

Is the OLEDB provider managed or unmanaged?

+1  A: 

OLEDB as the name suggests is implemented and accessed using OLE or COM. It is an unmanaged technology, but you can use it via COM/interop in the usual fashion.

1800 INFORMATION
+1  A: 

As far as I am aware, the answer is both.

The ADO.NET part is managed (System.Data.OleDb), but the underlying OLEDB driver will be native.

Richard