在 C# 中将 OracleDataReader 导出到 Excel
我有这样的代码,
string ConnectionString = ConfigurationManager.ConnectionStrings["ora"].ConnectionString; OracleConnection conn = new OracleConnection(ConnectionString); 字符串 sql = @"SELECT DISTINCT(B.MUS_K_ISIM), A.HESAP_NO 来自 S_TAKIP_MUSTERIA、S_TEKLIF B 其中 A.HESAP_NO = B.HESAP_NO 按 B.MUS_K_ISIM 排序”; conn.Open(); OracleCommand cmd = new OracleCommand(sql, conn); cmd.CommandType = System.Data.CommandType.Text; OracleDataReader dr = cmd.ExecuteReader(System.Data.CommandBehavior.CloseConnection);
如何将 DataReader 中的一些信息导出到 Excel?我想要什么,当我单击按钮时,从 DataReader 导出 Excel。
I have a code like this,
string ConnectionString = ConfigurationManager.ConnectionStrings["ora"].ConnectionString; OracleConnection conn = new OracleConnection(ConnectionString); string sql = @"SELECT DISTINCT(B.MUS_K_ISIM), A.HESAP_NO FROM S_TAKIP_MUSTERI A, S_TEKLIF B WHERE A.HESAP_NO = B.HESAP_NO ORDER BY B.MUS_K_ISIM"; conn.Open(); OracleCommand cmd = new OracleCommand(sql, conn); cmd.CommandType = System.Data.CommandType.Text; OracleDataReader dr = cmd.ExecuteReader(System.Data.CommandBehavior.CloseConnection);
How can i export coming some information from DataReader to Excel? What i want, When i click the button, Export the Excel from DataReader.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Microsoft.Office.Interop.Excel 创建 Excel 实例,然后检查并使用数据填充电子表格中的单元格。
You could use Microsoft.Office.Interop.Excel to create an instance of excel and then go through and populate the cells in the spreadsheet with the data.