婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > 將Excel中數據導入到Access數據庫中的方法

將Excel中數據導入到Access數據庫中的方法

熱門標簽:山東防封電銷卡辦理套餐 廈門四川外呼系統 怎樣在地圖標注消火栓圖形 泰州手機外呼系統軟件 地圖標注位置多的錢 內蒙古智能電銷機器人哪家強 杭州智能電話機器人 濟源人工智能電話機器人價格 百度地圖標注點擊事件

Default.aspx

復制代碼 代碼如下:

%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

html xmlns="http://www.w3.org/1999/xhtml">
head id="Head1" runat="server">
    title>無標題頁/title>
    style type="text/css">

        .style1
        {
            height: 16px;
        }
        .style3
        {
            height: 23px;
        }
    /style>
/head>
body>
    form id="form1" runat="server">

    div>

    /div>
    table align="center" border="1" bordercolor="honeydew" cellpadding="0"
        cellspacing="0">
        tr>
            td style="FONT-SIZE: 9pt; COLOR: #ff0000; BACKGROUND-COLOR: #ff9933; TEXT-ALIGN: center"
                class="style1">
            /td>
            td colspan="2"
                style="FONT-SIZE: 9pt; COLOR: #ffffff; HEIGHT: 16px; BACKGROUND-COLOR: #ff9933; TEXT-ALIGN: center">
                將Excel數據寫入Access數據庫中/td>
        /tr>
        tr>
            td style="BACKGROUND-COLOR: #ffffcc; TEXT-ALIGN: center">
            /td>
            td style="BACKGROUND-COLOR: #ffffcc; TEXT-ALIGN: center">
                iframe id="I1" name="I1" scrolling="yes" src="學生成績.xls"
                    style="WIDTH: 407px; HEIGHT: 280px">/iframe>
            /td>
            td style="WIDTH: 190px; BACKGROUND-COLOR: #ffffcc; TEXT-ALIGN: center">
                asp:GridView ID="GridView1" runat="server" CellPadding="4" Font-Size="9pt"
                    ForeColor="#333333" GridLines="None" Width="228px">
                    FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
                    RowStyle BackColor="#FFFBD6" ForeColor="#333333" />
                    SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="Navy" />
                    PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
                    HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
                    AlternatingRowStyle BackColor="White" />
                /asp:GridView>
            /td>
        /tr>
        tr>
            td style="BACKGROUND-COLOR: #ff9900; TEXT-ALIGN: center" class="style3">
            /td>
            td style="HEIGHT: 23px; BACKGROUND-COLOR: #ff9900; TEXT-ALIGN: center"
                valign="top">
                asp:Button ID="Button3" runat="server" Font-Size="9pt" onclick="Button1_Click"
                    Text="Excel數據寫入Access數據庫中" />
    asp:Label ID="Label1" runat="server" Text="Label" Visible="False"
                    style="font-size: x-small">/asp:Label>
            /td>
            td style="WIDTH: 190px; HEIGHT: 23px; BACKGROUND-COLOR: #ff9900; TEXT-ALIGN: center">
                asp:Button ID="Button2" runat="server" Font-Size="9pt" onclick="Button2_Click"
                    Text="數據庫中顯示Excel數據" />
            /td>
        /tr>
        tr>
            td>
                nbsp;/td>
        /tr>
    /table>
    /form>
/body>
/html>

Default.aspx.cs

復制代碼 代碼如下:

using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

using System.Data.OleDb;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    public OleDbConnection CreateCon()
    {
        string strconn = "Provider=Microsoft.Jet.OLEDB.4.0;Data source=" + Server.MapPath("UserScore.mdb") + ";User Id=admin;Password=;";
        OleDbConnection odbc = new OleDbConnection(strconn);
        return odbc;
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        //定義Excel列表
        string StyleSheet = "Sheet1";
        //調用自定義LoadData方法,將Excel文件中數據讀到ASPNET頁面中
        LoadData(StyleSheet);
        //定義查詢的SQL語句
        string sql = "select ID,用戶姓名,試卷,成績,考試時間 from Score";
        //創建Oledb數據庫連接
        OleDbConnection con = CreateCon();
        con.Open();//打開數據庫連接
        OleDbCommand com = new OleDbCommand(sql, con);
        //開始事務
        OleDbTransaction tran = con.BeginTransaction();
        com.Transaction = tran;
        //創建適配器
        OleDbDataAdapter da = new OleDbDataAdapter(com);
        OleDbCommandBuilder cb = new OleDbCommandBuilder(da);
        //創建DataSet數據集
        DataSet ds = new DataSet();
        //填充數據集
        da.Fill(ds);
        int curIndex = 0;
        if (ds.Tables[0].Rows.Count > 0)
        {
            curIndex = Convert.ToInt32(ds.Tables[0].Rows[0][0]);
        }
        //創建一個內存表
        DataTable tb = this.getExcelDate();
        string selsql = "";
        for (int i = 0; i tb.Rows.Count; i++)
        {
            string UserName = tb.Rows[i][0].ToString();
            selsql = "select count(*) from Score where 用戶姓名='" + UserName + "'";
        }
        //判斷Excel文件中是否已經導入到Access數據庫中
        if (ExScalar(selsql) > 0)
        {
            Label1.Visible = true;
            Label1.Text = "script language=javascript>alert('該Excle中的數據已經導入數據庫中!');location='Default.aspx';/script>";
        }
        else
        {
            //循環讀取Excel文件中數據,并添加到Access事先創建好的數據庫表中
            for (int i = 0; i tb.Rows.Count; i++)
            {
                DataRow dr = ds.Tables[0].NewRow();
                dr[0] = ++curIndex;
                dr[1] = tb.Rows[i][0];
                dr[2] = tb.Rows[i][1];
                dr[3] = tb.Rows[i][2];
                dr[4] = tb.Rows[i][3];
                ds.Tables[0].Rows.Add(dr);
            }
            try
            {
                da.Update(ds);//執行插入操作
                tran.Commit();//事務提交
                Label1.Visible = true;
                Label1.Text = "script language=javascript>alert('數據導入成功!');location='Default.aspx';/script>";
            }
            catch
            {
                tran.Rollback();//事務回滾
                Label1.Visible = true;
                Label1.Text = "script language=javascript>alert('數據導入失敗!');location='Default.aspx';/script>";
            }
            finally
            {
                con.Close();//關閉數據庫連接
            }
        }
    }
    protected void Button2_Click(object sender, EventArgs e)
    {
        string sqlstr = "select * from Score";
        OleDbConnection conn = CreateCon();
        conn.Open();
        OleDbCommand mycom = new OleDbCommand(sqlstr, conn);
        OleDbDataReader dr = mycom.ExecuteReader();
        dr.Read();
        if (dr.HasRows)
        {
            GetDataSet(sqlstr);
        }
        else
        {
            Label1.Visible = true;
            Label1.Text = "script language=javascript>alert('數據庫中沒有數據信息,請先導入再查詢!');location='Default.aspx';/script>";
        }
        dr.Close();
        conn.Close();
    }
    public DataSet GetDataSet(string sqlstr)
    {
        OleDbConnection conn = CreateCon();
        OleDbDataAdapter myda = new OleDbDataAdapter(sqlstr, conn);
        DataSet ds = new DataSet();
        myda.Fill(ds);
        GridView1.DataSource = ds;
        GridView1.DataBind();
        return ds;
    }
    public DataTable getExcelDate()
    {
        string strExcelFileName = Server.MapPath("學生成績.xls");
        string strcon = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + strExcelFileName + ";" + "Extended Properties='Excel 8.0;HDR=YES;IMEX=1';";
        string sql = "select * from [Sheet1$]";
        OleDbDataAdapter da = new OleDbDataAdapter(sql, strcon);
        DataSet ds = new DataSet();
        da.Fill(ds);
        return ds.Tables[0];
    }
    public void LoadData(string StyleSheet)
    {
        //定義數據庫連接字符串 m
        string strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source =" + Server.MapPath("學生成績.xls") + ";Extended Properties=Excel 8.0";
        //創建數據庫連接
        OleDbConnection myConn = new OleDbConnection(strCon);
        //打開數據鏈接,得到一個數據集
        myConn.Open();
        //創建DataSet對象  
        DataSet myDataSet = new DataSet();
        //定義查詢的SQL語句
        string StrSql = "select   *   from   [" + StyleSheet + "$]";
        //創建數據庫適配器
        OleDbDataAdapter myCommand = new OleDbDataAdapter(StrSql, myConn);
        //填充數據集中的數據
        myCommand.Fill(myDataSet, "[" + StyleSheet + "$]");
        //釋放占有的資源
        myCommand.Dispose();
        //關閉數據庫連接
        myConn.Close();
    }
    public int ExScalar(string sql)
    {
        OleDbConnection conn = CreateCon();
        conn.Open();
        OleDbCommand com = new OleDbCommand(sql, conn);
        return Convert.ToInt32(com.ExecuteScalar());
        conn.Close();
    }
}

您可能感興趣的文章:
  • access dbase excel foxpro 數據庫瀏覽器V3.1版 下載
  • Excel數據導入Mysql數據庫的實現代碼
  • Excel導入Sqlserver數據庫腳本
  • Linux下將excel數據導入到mssql數據庫中的方法
  • php將數據庫導出成excel的方法
  • php中使用ExcelFileParser處理excel獲得數據(可作批量導入到數據庫使用)
  • php excel reader讀取excel內容存入數據庫實現代碼
  • ASP.NET下將Excel表格中的數據規則的導入數據庫思路分析及實現
  • Excel導入數據庫時出現的文本截斷問題解決方案
  • 如何把Excel數據導入到SQL2008數據庫的實例方法
  • Java 使用poi把數據庫中數據導入Excel的解決方法
  • PHP 如何利用phpexcel導入數據庫
  • 把excel表格里的數據導入sql數據庫的兩種方法
  • Excel、記事本數據導入到數據庫的實現方法
  • C#連接Excel2003和Excel2007以上版本做數據庫的連接字符串
  • c#將Excel數據導入到數據庫的實現代碼
  • 利用phpexcel把excel導入數據庫和數據庫導出excel實現
  • c#生成excel示例sql數據庫導出excel
  • android通過jxl讀excel存入sqlite3數據庫
  • Drupal讀取Excel并導入數據庫實例
  • 使用工具 plsqldev將Excel導入Oracle數據庫
  • asp.net中EXCEL數據導入到數據庫的方法
  • php導入excel文件到mysql數據庫的方法
  • C#窗體讀取EXCEL并存入SQL數據庫的方法
  • C#定制Excel界面并實現與數據庫交互的方法

標簽:新鄉 周口 百色 臺州 朝陽 喀什 洛陽 朔州

巨人網絡通訊聲明:本文標題《將Excel中數據導入到Access數據庫中的方法》,本文關鍵詞  將,Excel,中,數據,導入,到,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《將Excel中數據導入到Access數據庫中的方法》相關的同類信息!
  • 本頁收集關于將Excel中數據導入到Access數據庫中的方法的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 黑龙江省| 桦川县| 东城区| 左云县| 石台县| 五河县| 合作市| 四会市| 庐江县| 陵水| 佛山市| 塔城市| 宁夏| 东丽区| 菏泽市| 桃园县| 噶尔县| 临武县| 水城县| 阜新市| 吕梁市| 枝江市| 红原县| 壶关县| 深州市| 嫩江县| 泗洪县| 蕲春县| 南涧| 宜黄县| 湘乡市| 巧家县| 鹿邑县| 克山县| 托克逊县| 敖汉旗| 特克斯县| 卢湾区| 清原| 杭锦后旗| 四子王旗|