如何创建与 Excel 一起使用的数据提供程序
Excel (2010) 具有从外部数据源(如 Access、Web 和其他数据源(如 SQL Server 和 ODBC)创建数据透视表的功能)。假设我创建了一个名为 X 的新数据库系统,并且我想创建 Excel 可以使用数据提供程序(而不是 Excel 加载项)连接到该 X 的功能。我要开发什么以及从哪里开始?
Excel (2010) has functionality to create pivot tables from an external data source like from Access, From Web and other data sources like SQL server and ODBC. Suppose I have created a new database system called X and I want to create the functionality that Excel can connect to this X using a data provider (not an Excel Add-in). What do I develop and where do I start?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没记错的话,Excel 可以使用任何 ADO.NET 驱动程序。因此,您需要做的就是遵循以下 指南。 此处是来自 MSDN 杂志的更详细说明。
如果 Excel 不支持,您需要创建一个 OleDb 驱动程序 ADO.NET 驱动程序。
Excel can use any ADO.NET driver If I'm not mistaken. So all you need to do is to follow the following guide. Here is a more detailed description from MSDN Magazine.
You'll need to create an OleDb driver if Excel doesn't support ADO.NET drivers.