C#.NET中如何批量插入大量数据到数据库中
来源:本站原创|时间:2020-01-10|栏目:C#教程|点击: 次
在WEB项目开发过程中有时会碰到批量插入数据到数或者是将EXCEL文件据入到数据库中.为了方便实现可以先将EXCEL导入到GRIDVIEW中然后一次批量插入.实现代码如下:
前台代码
<asp:GridView ID="dgBom" runat="server" AutoGenerateColumns="false" CellPadding="1" CellSpacing="2"> <HeaderStyle BackColor="#ededed" /> <Columns> <asp:TemplateField HeaderText="学号"> <ItemTemplate> <asp:TextBox ID="studentnumber" runat="server" Text='<%#Eval("studentnumber") %>' ></asp:TextBox> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="学生姓名"> <ItemTemplate> <asp:TextBox ID="studentname" runat="server" Text='<%#Eval("studentname") %>'></asp:TextBox> </ItemTemplate> </asp:TemplateField> </Columns> </asp:GridView> <asp:FileUpload ID="FileUpload1" runat="server" Font-Italic="False" /> <asp:Button ID="btn2" runat="server" OnClick="btn2_Click" Text="导入数据" /> <asp:Button ID="btninsert" runat="server" OnClick="btninsert_Click" Text="插入到数据库中"/>
后台代码:
//首先在命名空间中加入以下两行 using System.Data.SqlClient; using System.Data.OleDb; protected void btn2_Click(object sender, EventArgs e) { string filepath = FileUpload1.PostedFile.FileName; ReadExcel(filepath, dgBom); } public void ReadExcel(string sExcelFile, GridView dgBom) { DataTable ExcelTable; DataSet ds = new DataSet(); //Excel的连接 OleDbConnection objConn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + sExcelFile + ";" + "Extended Properties=Excel 8.0;"); objConn.Open(); DataTable schemaTable = objConn.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables, null); string tableName = schemaTable.Rows[0][2].ToString().Trim();//获取 Excel 的表名,默认值是sheet1 string strSql = "select * from [" + tableName + "]"; OleDbCommand objCmd = new OleDbCommand(strSql, objConn); OleDbDataAdapter myData = new OleDbDataAdapter(strSql, objConn); myData.Fill(ds, tableName);//填充数据 dgBom.DataSource =ds; dgBom.DataBind(); objConn.Close(); ExcelTable = ds.Tables[tableName]; int iColums = ExcelTable.Columns.Count;//列数 int iRows = ExcelTable.Rows.Count;//行数 //定义二维数组存储 Excel 表中读取的数据 string[,] storedata = new string[iRows, iColums]; for(int i=0;i<ExcelTable.Rows.Count;i++) for (int j = 0; j < ExcelTable.Columns.Count; j++) { //将Excel表中的数据存储到数组 storedata[i, j] = ExcelTable.Rows[i][j].ToString(); } int excelBom = 0;//记录表中有用信息的行数,有用信息是指除去表的标题和表的栏目,本例中表的用用信息是从第三行开始 //确定有用的行数 for (int k = 2; k < ExcelTable.Rows.Count; k++) if (storedata[k, 1] != "") excelBom++; if (excelBom == 0) { Response.Write("<script language=javascript>alert('您导入的表格不合格式!')</script>"); } else { //LoadDataToDataBase(storedata,excelBom)//该函数主要负责将 storedata 中有用的数据写入到数据库中,在此不是问题的关键省略 } } protected void btninsert_Click(object sender, EventArgs e) { foreach (GridViewRow gv in dgBom.Rows) { //我的连接字符串是写在WEB.CONFIG中的. string con = System.Configuration.ConfigurationManager.AppSettings["ConnectionString1"].ToString(); SqlConnection conn = new SqlConnection(con); SqlCommand cmd = conn.CreateCommand(); cmd.CommandType = CommandType.Text; cmd.CommandText = "insert into student (studentnumber,studentname) values(@studentnumber,@studentname)"; cmd.Parameters.Add("@studentnumber", SqlDbType.NVarChar, 20); cmd.Parameters.Add("@studentname", SqlDbType.NVarChar, 10); cmd.Parameters["@studentname"].Value = ((TextBox)gv.FindControl("studentname")).Text; cmd.Parameters["@studentnumber"].Value = ((TextBox)gv.FindControl("studentnumber")).Text; try { conn.Open(); cmd.ExecuteNonQuery(); conn.Close(); } finally { if (conn != null) conn.Dispose(); } } }
以上内容就是本文的全部叙述,希望对大家学习C#.NET中如何批量插入大量数据到数据库中有所帮助。
您可能感兴趣的文章
- 01-10C#通过反射获取当前工程中所有窗体并打开的方法
- 01-10C#实现Winform中打开网页页面的方法
- 01-10C#实现由四周向中心缩小的窗体退出特效
- 01-10Extjs4如何处理后台json数据中日期和时间
- 01-10C#中DataGridView常用操作实例小结
- 01-10C#编程获取资源文件中图片的方法
- 01-10asp.net中XML如何做增删改查操作
- 01-10C#利用反射技术实现去掉按钮选中时的边框效果
- 01-10C#中查找Dictionary中的重复值的方法
- 01-10C#中TreeView实现适合两级节点的选中节点方法
阅读排行
本栏相关
- 01-10C#通过反射获取当前工程中所有窗体并
- 01-10关于ASP网页无法打开的解决方案
- 01-10WinForm限制窗体不能移到屏幕外的方法
- 01-10WinForm绘制圆角的方法
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频播放器左下角滚动新
- 01-10C#停止线程的方法
- 01-10C#实现清空回收站的方法
- 01-10C#通过重写Panel改变边框颜色与宽度的
- 01-10C#实现读取注册表监控当前操作系统已
随机阅读
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 01-11ajax实现页面的局部加载
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10SublimeText编译C开发环境设置
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-10delphi制作wav文件的方法
- 04-02jquery与jsp,用jquery
- 01-10C#中split用法实例总结
- 08-05DEDE织梦data目录下的sessions文件夹有什