C#实现写入Excel表 using System; using System.Reflection; using System.IO; using Microsoft.Office.Interop.Excel; namespace Test { class Program { public static bool WriteXls(string filename) { //启动Excel应用程序 Microsoft.Office.Interop.Excel.Application xls =…
主要用到openrowset,opendatasource系统函数,这两个函数任意一个都能完成任务 用这种方法可以实现Excel和sqlserver表之间的相互导入导出. 如果使用openrowset报错,可以参看这篇文章http://www.cnblogs.com/xiashengwang/p/3511808.html openrowset的写法 --3,链接Excel Microsoft Jet 4.0 OLE DB Provider --读Excel数据,注意Excel必须事先关闭 sel…