使用C#在Excel 2007中导入sql server数据
是否可以使用 C# 将 sql server 数据导入到 Excel 中?
如果是这样,我该怎么做?
Is it possible to import sql server data in to Excel using c#?
If so, how can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一些可以帮助您的链接:
链接:
http: //dotnetguts.blogspot.com/2007/12/export-datagrid-to-excel-in-aspnet.html
http://msdn.microsoft.com/en-us/library/ ms173186(VS.80).aspx
http://www.codeproject.com/KB/cs/Excel_and_C_.aspx
http://support.microsoft.com/kb/302084
http://www.dotnetfunda.com/articles/article1150-all-in-one-export-data-in-aspnet-gridview-to-doc-gridview-to-excel-gr-.aspx
some links to help you out:
Links:
http://dotnetguts.blogspot.com/2007/12/export-datagrid-to-excel-in-aspnet.html
http://msdn.microsoft.com/en-us/library/ms173186(VS.80).aspx
http://www.codeproject.com/KB/cs/Excel_and_C_.aspx
http://support.microsoft.com/kb/302084
http://www.dotnetfunda.com/articles/article1150-all-in-one-export-data-in-aspnet-gridview-to-doc-gridview-to-excel-gr-.aspx
是的。甚至可以使用 C++ 和 ODBC :)
要在 C# 中执行此操作,您需要创建 Excel 文档对象。
要创建 Excel 文档对象,您首先需要创建对 Microsoft Excel 对象库的引用。
然后使用 ADO.Net 从 SQL Server 读取数据。然后将此数据插入到打开的 Excel 文档对象中。
然后你需要保存这个Excel文档。
Yes. It is possible even using C++ and ODBC :)
To do it in C#, you need to create Excel document object.
To create Excel Document object, you need first to create reference to Microsoft Excel Object Library.
Then read the data from SQL Server using ADO.Net. Then insert this data into opened Excel document object.
Then you need to save this Excel document.