| 发表于:2007-03-02 12:30:113楼 得分:0 |
/// /// 写入excel文档 /// /// 文件名称 public bool savefp2toexcel(string path) { try { string strconn = "provider=microsoft.jet.oledb.4.0; " + "data source= "+ path + "; "+ "extended properties=excel 8.0; "; oledbconnection conn = new oledbconnection(strconn); conn.open(); system.data.oledb.oledbcommand cmd=new oledbcommand (); cmd.connection =conn; //cmd.commandtext = "update [sheet1$] set 姓名= '2005-01-01 ' where 工号= '日期 ' "; //cmd.EXECutenonquery (); for(int i=0;i { if(fp2.sheets [0].cells[i,0].text!= " ") { cmd.commandtext = "insert into [sheet1$] (工号,姓名,部门,职务,日期,时间) values( ' "+fp2.sheets [0].cells[i,0].text+ " ', ' "+ fp2.sheets [0].cells[i,1].text+ " ', ' "+fp2.sheets [0].cells[i,2].text+ " ', ' "+fp2.sheets [0].cells[i,3].text+ " ', ' "+fp2.sheets [0].cells[i,4].text+ " ', ' "+fp2.sheets [0].cells[i,5].text+ " ') "; cmd.EXECutenonquery (); } } conn.close (); return true; } catch(system.data.oledb.oledbexception ex) { system.diagnostics.debug.writeline ( "写入excel发生错误: "+ex.message ); } return false; } | | |
|