zoukankan
html css js c++ java
从Excel中读出导入sql server
/**/
///
<summary>
///
从Excel读取后导入sql server
///
</summary>
public
void
ReadExcel()
{
string
sql
=
"
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=
"
+
Server.MapPath(
"
teachers.xls
"
)
+
"
;Extended Properties=Excel 8.0
"
;
OleDbConnection cnn
=
new
OleDbConnection(sql);
cnn.Open();
OleDbDataAdapter oda
=
new
OleDbDataAdapter(
"
select * from [教师$]
"
, cnn);
DataSet ds
=
new
DataSet();
oda.Fill(ds);
cnn.Close();
int
count
=
ds.Tables[
0
].Rows.Count;
for
(
int
i
=
0
; i
<
count; i
++
)
{
Jzgjbxx model
=
new
Jzgjbxx();
model.JZGID
=
ds.Tables[
0
].Rows[i][
"
JZGID
"
].ToString();
model.JZGBM
=
ds.Tables[
0
].Rows[i][
"
JZGBM
"
].ToString();
model.XXID
=
ds.Tables[
0
].Rows[i][
"
XXID
"
].ToString();
model.XM
=
ds.Tables[
0
].Rows[i][
"
XM
"
].ToString();
model.YHID
=
ds.Tables[
0
].Rows[i][
"
YHID
"
].ToString();
model.SFZH
=
ds.Tables[
0
].Rows[i][
"
SFZH
"
].ToString();
if
(ds.Tables[
0
].Rows[i][
"
CSRQ
"
].ToString()
!=
""
)
{
model.CSRQ
=
DateTime.Parse(ds.Tables[
0
].Rows[i][
"
CSRQ
"
].ToString());
}
else
{
model.CSRQ
=
DateTime.Now;
}
model.XBBM
=
ds.Tables[
0
].Rows[i][
"
XBBM
"
].ToString();
model.MZBM
=
ds.Tables[
0
].Rows[i][
"
MZBM
"
].ToString();
model.WHCDBM
=
ds.Tables[
0
].Rows[i][
"
WHCDBM
"
].ToString();
model.ZCBM
=
ds.Tables[
0
].Rows[i][
"
ZCBM
"
].ToString();
model.JSZGBM
=
ds.Tables[
0
].Rows[i][
"
JSZGBM
"
].ToString();
model.DYXLBM
=
ds.Tables[
0
].Rows[i][
"
DYXLBM
"
].ToString();
model.ZZMMBM
=
ds.Tables[
0
].Rows[i][
"
ZZMMBM
"
].ToString();
model.BZLBBM
=
ds.Tables[
0
].Rows[i][
"
BZLBBM
"
].ToString();
model.RKZKBM
=
ds.Tables[
0
].Rows[i][
"
RKZKBM
"
].ToString();
model.GWZYBM
=
ds.Tables[
0
].Rows[i][
"
GWZYBM
"
].ToString();
model.DZXX
=
ds.Tables[
0
].Rows[i][
"
DZXX
"
].ToString();
model.BZ
=
ds.Tables[
0
].Rows[i][
"
BZ
"
].ToString();
model.SCBZ
=
ds.Tables[
0
].Rows[i][
"
SCBZ
"
].ToString();
if
(ds.Tables[
0
].Rows[i][
"
CJNY
"
].ToString()
!=
""
)
{
model.CJRQ
=
DateTime.Parse(ds.Tables[
0
].Rows[i][
"
CJNY
"
].ToString());
}
else
{
model.CJRQ
=
DateTime.Now;
}
if
(ds.Tables[
0
].Rows[i][
"
CJGZNY
"
].ToString()
!=
""
)
{
model.CJGZRQ
=
DateTime.Parse(ds.Tables[
0
].Rows[i][
"
CJGZNY
"
].ToString());
}
else
{
model.CJGZRQ
=
DateTime.Now;
}
if
(ds.Tables[
0
].Rows[i][
"
LXNY
"
].ToString()
!=
""
)
{
model.LBXGZRQ
=
DateTime.Parse(ds.Tables[
0
].Rows[i][
"
LXNY
"
].ToString());
}
else
{
model.LBXGZRQ
=
DateTime.Now;
}
(
new
JzgjbxxBLL()).Create(model);
}
ds.Clear();
}
查看全文
相关阅读:
[Luogu] P1886 滑动窗口
[Luogu] P1195 口袋的天空
[Luogu] P1331 海战
[Luogu] P3952 时间复杂度
运营活动如何防刷
考研政治刷题小程序
考研刷题小程序
在线答题活动小程序
知识竞答小程序v2.0
知识竞答小程序
原文地址:https://www.cnblogs.com/wucf2004/p/823805.html
最新文章
腾讯企业邮箱免费注册及登录方法
discuz邮箱注册激活||腾讯企业邮箱免费注册及登录方法
织梦文章页分页导航条
信息发布员和频道管理员如何查看dedecms自定义表单内容
BZOJ1251 序列终结者
点分治学习笔记
Gym102059A Coloring Roads
多项式相关操作学习笔记
Codeforces 786B Legacy (线段树优化建图)
HDU5765 Bonds (高维前缀和)
热门文章
虚树(Virtual Tree)学习笔记
Codeforces 235C
Codeforces 1091E
SPOJ1812 LCS2
斜率优化
[HNOI 2008]玩具装箱
[Luogu] P1899 魔法物品
[Luogu] P1103 书本整理
[Luogu] P1255 数楼梯
CF409F 000001
Copyright © 2011-2022 走看看