程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#聯合數據庫的數據收集器示例

C#聯合數據庫的數據收集器示例

編輯:C#入門知識

C#聯合數據庫的數據收集器示例。本站提示廣大學習愛好者:(C#聯合數據庫的數據收集器示例)文章只能為提供參考,不一定能成為您想要的結果。以下是C#聯合數據庫的數據收集器示例正文


本文所述為C#數據收集器,並聯合稀有據庫操作,比擬適用。讀者可以進一步再完美一下寫成一個加倍成熟的數據收集法式。

詳細功效代碼以下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.IO;
namespace CollectionEnginery
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }
    public static SqlConnection My_con; //界說一個SqlConnection類型的公共變量My_con,用於斷定數據庫能否銜接勝利
    public static string M_str_sqlcon = "Data Source=.;Database=CollectionEnginery;User id=sa;PWD=";
    StreamReader SReader;
    #region 樹立數據庫銜接
    /// <summary>
    /// 樹立數據庫銜接.
    /// </summary>
    /// <returns>前往SqlConnection對象</returns>
    public static SqlConnection getcon()
    {
      My_con = new SqlConnection(M_str_sqlcon);  //用SqlConnection對象與指定的數據庫相銜接
      My_con.Open(); //翻開數據庫銜接
      return My_con; //前往SqlConnection對象的信息
    }
    #endregion
    #region 創立DataSet對象
    /// <summary>
    /// 創立一個DataSet對象
    /// </summary>
    /// <param name="M_str_sqlstr">SQL語句</param>
    /// <param name="M_str_table">表名</param>
    /// <returns>前往DataSet對象</returns>
    public DataSet getDataSet(string SQLstr, string tableName)
    {
      getcon();  //翻開與數據庫的銜接
      SqlDataAdapter SQLda = new SqlDataAdapter(SQLstr, My_con); //創立一個SqlDataAdapter對象,並獲得指定命據表的信息
      DataSet My_DataSet = new DataSet(); //創立DataSet對象
      SQLda.Fill(My_DataSet, tableName); //經由過程SqlDataAdapter對象的Fill()辦法,將數據表信息添加到DataSet對象中
      con_close();  //封閉數據庫的銜接
      return My_DataSet; //前往DataSet對象的信息
    }
    #endregion

    #region 封閉數據庫銜接
    /// <summary>
    /// 封閉於數據庫的銜接.
    /// </summary>
    public void con_close()
    {
      if (My_con.State == ConnectionState.Open)  //斷定能否翻開與數據庫的銜接
      {
        My_con.Close();  //封閉數據庫的銜接
        My_con.Dispose();  //釋放My_con變量的一切空間
      }
    }
    #endregion

    private void Form1_Load(object sender, EventArgs e)
    {
      DataSet dataSet = new DataSet();
      dataSet = getDataSet("select * from tb_Collection", "tb_Collection");
      dataGridView1.DataSource = dataSet.Tables[0];
      dataGridView1.Columns[0].HeaderText = "編號";
      dataGridView1.Columns[0].Width = 40;
      dataGridView1.Columns[1].HeaderText = "書名";
      dataGridView1.Columns[1].Width = 140;
      dataGridView1.Columns[2].HeaderText = "條形碼";
      dataGridView1.Columns[2].Width = 80;
      dataGridView1.Columns[3].HeaderText = "累加值";
      dataGridView1.Columns[3].Width = 80;
      dataGridView1.Columns[4].HeaderText = "總計";
      dataGridView1.Columns[4].Width = 40;
    }
    private void button1_Click(object sender, EventArgs e)
    {
      string tem_str = "";//記載以後行
      string tem_code = "";//條形碼號
      string tem_mark = "";//個數
      string tem_s=" ";
      StreamReader var_SRead = new StreamReader(Application.StartupPath + "\\AddData.dat");//實例化StreamReader,並翻開指定的文件
      while (true)//讀取dat文件中的一切行
      {
        tem_str = var_SRead.ReadLine();//記載dat文件指定行的數據
        tem_code = tem_str.Substring(0, tem_str.IndexOf(Convert.ToChar(tem_s))).Trim();//獲得以後行的條形碼
        tem_mark = tem_str.Substring(tem_str.IndexOf(Convert.ToChar(tem_s)), tem_str.Length - tem_str.IndexOf(Convert.ToChar(tem_s))-1).Trim();//獲得以後條形碼的個數
        for (int i = 0; i < dataGridView1.RowCount - 1; i++)//在dataGridView1控件中查找響應的條形碼
        {
          if (dataGridView1.Rows[i].Cells[2].Value.ToString().Trim() == tem_code)//如查找到
          {
            dataGridView1.Rows[i].Cells[3].Value = tem_mark.ToString();//顯示以後要添加的個數
            dataGridView1.Rows[i].Cells[4].Value = Convert.ToInt32(dataGridView1.Rows[i].Cells[4].Value) + Convert.ToInt32(tem_mark);//盤算以後條形碼的總數
          }
        }
        if (var_SRead.EndOfStream)//假如查詢到文件尾
          break;//加入輪回
      }
      var_SRead.Close();//釋放一切資本
    }
  }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved