首页 > 开发 > 综合 > 正文

(C#)excel数据导入SqlServer中

2024-07-21 02:26:22
字体:
来源:转载
供稿:网友
编写程序,把附件的excel文件( (实验题附件1)03级学生名单.xls
或(实验题附件2)成绩登记表.xls) 导入到sql server2000数据库中.
要求:
1、excel文件作为数据源
2、根据excel文件的字段在sql server中建立对应的字段
3、把execl中的记录导到sql server中


string strcon = " provider = microsoft.jet.oledb.4.0 ; data source = c://test.xls;extended properties=excel 8.0" ;
oledbconnection myconn = new oledbconnection (strcon) ;
myconn.open() ;
string strcom = " select category,comp_num from [sheet1$] " ;
oledbdataadapter mycommand = new oledbdataadapter(strcom,myconn);
dataset1 = new dataset();
mycommand.fill (dataset1 , "[sheet1$]");
myconn.close();

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表