Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating a custom ODBC / OLE driver in C#

Does anyone know how to create an ODBC or OLE driver preferably in C#?

What I want to do is creating a custom data source which I can use in Excel and Access. Or do think of another way how to do this?

Thanks in advance for your responses!

like image 937
K. Ober Avatar asked Nov 15 '22 09:11

K. Ober


1 Answers

There is a simplified version of OLE DB Driver in C#. In the article below, the sample provides an access to in-memory array.

This is a good starting point in C#.

http://exceldevelopmentplatform.blogspot.com/2018/10/oledb-simple-provider-c-custom.html

like image 177
EylM Avatar answered Dec 10 '22 03:12

EylM