首頁 > 軟體

C# Sqlite資料庫的搭建及使用技巧

2022-08-05 18:02:22

前言

前面我們用了,類庫物件進行資料繫結,不懂的童鞋可以去找博主上一篇文章,今天給大家演示使用資料庫對datadridview進行資料繫結,其實也很簡單啦,讓我們捲起來。

1.1讓我們進入正題吧

1.1.2(方法一)使用無程式碼的方式,來使用資料庫繫結

1.1.3新建連線

建立自己的資料庫連結:

1.1.4選擇剛建立的連結

選擇你剛剛建立的連結,如果是用密碼的要選擇是,不然會連結失敗,登入不成功

1.1.5表和Id

選擇你需要的表和Id,如果需要整個資料庫就全選。

1.1.6效果展示

如果你需要新增新的查詢,點選下面的資料來源新增就可以了。

2.1使用程式碼的方式對DataGridView進行資料繫結(包含使用MySQL)

2.1.1 使用程式碼有著較多的方式,小編盡力把小編知道的方法寫出來,雙擊button1,生成方法

2.1.2 連線資料庫

連線資料庫,獲取資料,對datagridview進行資料繫結

 private void button1_Click(object sender, EventArgs e)
        {
            string connString = "server=.;database= StudentDB; User ID = sa; Pwd=123456";
            SqlConnection conn = new SqlConnection(connString);
            SqlCommand comm = new SqlCommand();
            comm.Connection = conn;
            string sql = String.Format("select course_id '編號',course_name '課程名',teacher_name '教師姓名' from T_course");
            try
             {

                conn.Open();
                SqlDataAdapter da = new SqlDataAdapter(sql, connString);
                DataSet ds = new DataSet();
                da.Fill(ds);
                dataGridView1.DataSource = ds.Tables[0];
                conn.Close();
              }
            catch (Exception ex)
                {
                       MessageBox.Show(ex.Message, "運算元據庫出錯!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);

                }
            }

2.1.3 效果展示

這裡使用的是SqL Server 資料庫。

2.1.4 其他方法

程式碼其實還有其他的方法

  string connString = "server=.;database= StudentDB; User ID = sa; Pwd=123456";
            SqlConnection conn = new SqlConnection(connString);
            SqlCommand comm = new SqlCommand();
            comm.Connection = conn;
           // string sql = String.Format("select course_id '編號',course_name '課程名',teacher_name '教師姓名' from T_course");
            try
             {

                conn.Open();
                string sql = "select course_id ,course_name,teacher_name from T_course";
                SqlDataAdapter da = new SqlDataAdapter(sql, connString);
                DataSet ds = new DataSet();
                da.Fill(ds,"studens");da. Fill (ds, "students");//引數1 : DataSet物件;引數2:名,自定義的名字,不需要和查詢的表名必須-致
                //方法一使用時註解其他方法
                dataGridView1.DataSource = ds;
                dataGridView1.DataMember ="studens";
                //方法二
                dataGridView1.DataSource = ds.Tables["studens"];
                //方法三
                DataTable dt = ds.Tables["studens"];
                dataGridView1.DataSource = dt.DefaultView;
                conn.Close();
              }
            catch (Exception ex)
                {
                       MessageBox.Show(ex.Message, "運算元據庫出錯!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);

                }            

2.1.5 對datagridview進行資料繫結

使用MySQL也是可以對datagridview進行資料繫結的,對資料庫連線方式改變,並且把那幾個型別前面為My,其他都是一樣的,提示要把名稱空間導進去,ALt+ENter快捷匯入,如果沒有,匯入哪裡會叫你下載,下載就好了。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;
using MySql.Data.MySqlClient;
namespace student
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {


        }

        private void button1_Click(object sender, EventArgs e)
        {
            string connString = "server=localhost; database=student; uid=root; pwd=88888888;Character Set=utf8;";
            MySqlConnection conn = new MySqlConnection(connString);
            MySqlCommand comm = new MySqlCommand();
            comm.Connection = conn;
           // string sql = String.Format("select course_id '編號',course_name '課程名',teacher_name '教師姓名' from T_course");
            try
             {

                conn.Open();
                string sql = "select course_id ,course_name,teacher_naem from T_course";
                MySqlDataAdapter da = new MySqlDataAdapter(sql, connString);
                DataSet ds = new DataSet();
                da.Fill(ds,"studens");
                //方法一
                dataGridView1.DataSource = ds;
                dataGridView1.DataMember ="studens";
                //方法二
               /* dataGridView1.DataSource = ds.Tables["studens"];
                //方法三
                DataTable dt = ds.Tables["studens"];
                dataGridView1.DataSource = dt.DefaultView;*/
                conn.Close();
              }
            catch (Exception ex)
                {
                       MessageBox.Show(ex.Message, "運算元據庫出錯!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);

                }
            }
    }
}

總結

DataGridView 這個控制元件博主基本寫完了,在寫文章中,學到很多東西,對自己的知識進行鞏固,並且學習到了新的東西,datagirdview還有一個資料來源是“服務”,博主沒有學習過這方面的知識,只知道如果你要用到類似阿里雲上面的資料庫,可以用第三方資料庫軟體連線再嵌入

到此這篇關於C# Sqlite資料庫的搭建及使用技巧的文章就介紹到這了,更多相關C# Sqlite資料庫搭建內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com