您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“C# Sqlite數(shù)據(jù)庫的搭建及使用實例分析”,內(nèi)容詳細,步驟清晰,細節(jié)處理妥當,希望這篇“C# Sqlite數(shù)據(jù)庫的搭建及使用實例分析”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。
建立自己的數(shù)據(jù)庫鏈接:
選擇你剛剛建立的鏈接,如果是用密碼的要選擇是,不然會鏈接失敗,登錄不成功
選擇你需要的表和Id,如果需要整個數(shù)據(jù)庫就全選。
如果你需要添加新的查詢,點擊下面的數(shù)據(jù)源添加就可以了。
連接數(shù)據(jù)庫,獲取數(shù)據(jù),對datagridview進行數(shù)據(jù)綁定
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, "操作數(shù)據(jù)庫出錯!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } }
這里使用的是SqL Server 數(shù)據(jù)庫。
代碼其實還有其他的方法
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");//參數(shù)1 : DataSet對象;參數(shù)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, "操作數(shù)據(jù)庫出錯!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); }
使用MySQL也是可以對datagridview進行數(shù)據(jù)綁定的,對數(shù)據(jù)庫連接方式改變,并且把那幾個類型前面為My,其他都是一樣的,提示要把命名空間導(dǎo)進去,ALt+ENter快捷導(dǎo)入,如果沒有,導(dǎo)入哪里會叫你下載,下載就好了。
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, "操作數(shù)據(jù)庫出錯!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } } }
讀到這里,這篇“C# Sqlite數(shù)據(jù)庫的搭建及使用實例分析”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。