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();
}
查看全文
相关阅读:
clone对象
Windows下swoole扩展的编译安装部署
PHP备忘录
Linux文档的压缩与打包
Linux系统启动过程
Linux虚拟机安装
MongoDB自动增长
MongoDB固定集合(Capped Collections)
Activating Google Cloud Storage
Downloading the Google Cloud Storage Client Library
原文地址:https://www.cnblogs.com/wucf2004/p/823805.html
最新文章
jQuery(四)(DOM一)
【转】JavaScript思维导图
(五)JavaScript之[类型转换]
(四)JavaScript之[break和continue]与[typeof、null、undefined]
canvas实例(基础)
(三)JavaScript之[事件]与[字符串]
(二)JavaScript之[函数]与[作用域]
(一)JavaScript之[数据类型]与[对象]
程序心谈
03-列表和元组,到底用哪一个?
热门文章
04-字典、集合,你真的了解吗
python模块-collections
python——算法攻坚课
python—类的继承——定制类
python——面向对象编程
python-模块
python安装遇到的相关问题
Selenium2Library
Windows7搭建Wamp环境
typeof、constructor和instanceof
Copyright © 2011-2022 走看看