asp.net數據庫增刪改查demo


 1 using System;
 2 using System.Collections.Generic;
 3 using System.ComponentModel;
 4 using System.Data;
 5 using System.Drawing;
 6 using System.Linq;
 7 using System.Text;
 8 using System.Windows.Forms;
 9 using System.Data;
10 using System.Data.SqlClient;
11  
12 namespace WindowsFormsApplication1
13 {
14   public partial class Form1 : Form
15   {
16     public Form1()
17     {
18       InitializeComponent();
19     }
20  
21     //查詢
22     private void button1_Click(object sender, EventArgs e)
23     {
24       string MyConn = "server=127.0.0.1;uid=sa;pwd=123654;database=libbook;Trusted_Connection=no";//定義數據庫連接參數
25       SqlConnection MyConnection = new SqlConnection(MyConn);//定義一個數據連接實例
26       SqlCommand MyCommand = new SqlCommand("SELECT * FROM 圖書借閱", MyConnection); //定義一個數據庫操作指令
27       SqlDataAdapter SelectAdapter = new SqlDataAdapter();//定義一個數據適配器
28       SelectAdapter.SelectCommand = MyCommand;//定義數據適配器的操作指令
29       DataSet MyDataSet = new DataSet();//定義一個數據集
30       MyConnection.Open();//打開數據庫連接
31       SelectAdapter.SelectCommand.ExecuteNonQuery();//執行數據庫查詢指令
32       MyConnection.Close();//關閉數據庫
33       SelectAdapter.Fill(MyDataSet);//填充數據集
34       DataGrid1.DataSource = MyDataSet.Tables[0];
35       //DataGrid1.DataBind();//將數據表格用數據集中的數據填充
36     }
37  
38     //添加
39     private void button2_Click(object sender, EventArgs e)
40     {
41       string MyConn = "server=127.0.0.1;uid=sa;pwd=123654;database=libbook;Trusted_Connection=no";
42       SqlConnection MyConnection = new SqlConnection(MyConn);
43       string MyInsert = "insert into 圖書借閱 (圖書編號,讀者編號,續借次數) values ('" + Convert.ToString(textBox2.Text) + "','" +
44         Convert.ToString(textBox3.Text)+ "','"+Convert.ToInt32(textBox4.Text)+ "')";
45       SqlCommand MyCommand = new SqlCommand(MyInsert, MyConnection);
46       try//異常處理
47       {
48         MyConnection.Open();
49         MyCommand.ExecuteNonQuery();
50         MyConnection.Close();
51       }
52       catch (Exception ex)
53       {
54         MessageBox.Show(ex.Message);
55       }
56     }
57  
58     //更新
59     private void button3_Click(object sender, EventArgs e)
60     {
61       string MyConn = "server=127.0.0.1;uid=sa;pwd=123654;database=libbook;Trusted_Connection=no";
62       SqlConnection MyConnection = new SqlConnection(MyConn);
63       string MyUpdate = "Update 圖書借閱 set 操作員='" + textBox2.Text + "'" + " where 借閱編號=" + "'" + textBox1.Text + "'";
64       SqlCommand MyCommand = new SqlCommand(MyUpdate, MyConnection);
65       try
66       {
67         MyConnection.Open();
68         MyCommand.ExecuteNonQuery();
69         MyConnection.Close();
70         textBox1.Text = "";
71       }
72       catch (Exception ex)
73       {
74         MessageBox.Show(ex.Message);
75       }
76     }
77  
78     //刪除
79     private void button4_Click(object sender, EventArgs e)
80     {
81       string MyConn = "server=127.0.0.1;uid=sa;pwd=123654;database=libbook;Trusted_Connection=no";
82       SqlConnection MyConnection = new SqlConnection(MyConn);
83       string MyDelete = "Delete from 圖書借閱 where 借閱編號=" + textBox1.Text;
84       SqlCommand MyCommand = new SqlCommand(MyDelete, MyConnection);
85       try
86       {
87         MyConnection.Open();
88         MyCommand.ExecuteNonQuery();
89         MyConnection.Close();
90         textBox1.Text = "";
91       }
92       catch (Exception ex)
93       {
94         MessageBox.Show(ex.Message);
95       }
96     }
97   }
98 }

 sql增刪改查:

增:有4種方法
  1.使用insert插入單行數據:
   語法:insert [into] <表名> [列名] values <列值>
   例:insert into Strdents (姓名,性別,出生日期) values (‘開心朋朋’,’男’,’1980/6/15’)
   注意:into可以省略;列名列值用逗號分開;列值用單引號因上;如果省略表名,將依次插入所有列

  2.使用insert select語句將現有表中的數據添加到已有的新表中
   語法:insert into <已有的新表> <列名>
      select <原表列名> from <原表名>
   例:insert into tongxunlu (‘姓名’,’地址’,’電子郵件’)
     select name,address,email
     from Strdents
   注意:into不可省略;查詢得到的數據個數、順序、數據類型等,必須與插入的項保持一致

  3.使用select into語句將現有表中的數據添加到新建表中
   語法:select <新建表列名> into <新建表名> from <源表名>
   例:select name,address,email into tongxunlu from strdents
   注意:新表是在執行查詢語句的時候創建的,不能夠預先存在
   在新表中插入標識列(關鍵字‘identity’):
   語法:select identity (數據類型,標識種子,標識增長量) AS 列名
      into 新表 from 原表名
   例:select identity(int,1,1) as 標識列,dengluid,password into tongxunlu from Struents
   注意:關鍵字‘identity’

  4.使用union關鍵字合並數據進行插入多行
   語法:insert <表名> <列名> select <列值> tnion select <列值>
   例:insert Students (姓名,性別,出生日期)
     select ‘開心朋朋’,’男’,’1980/6/15’ union(union表示下一行)
     select ‘藍色小明’,’男’,’19**//’
   注意:插入的列值必須和插入的列名個數、順序、數據類型一致

二、刪:有2中方法
  1.使用delete刪除數據某些數據
   語法:delete from <表名> [where <刪除條件>]
   例:delete from a where name=’開心朋朋’(刪除表a中列值為開心朋朋的行)
   注意:刪除整行不是刪除單個字段,所以在delete后面不能出現字段名
  2.使用truncate table 刪除整個表的數據
   語法:truncate table <表名>
   例:truncate table tongxunlu
   注意:刪除表的所有行,但表的結構、列、約束、索引等不會被刪除;不能用語有外建約束引用的表

三、改
  使用update更新修改數據
   語法:update <表名> set <列名=更新值> [where <更新條件>]
   例:update tongxunlu set 年齡=18 where 姓名=’藍色小名’
   注意:set后面可以緊隨多個數據列的更新值;where子句是可選的,用來限制條件,如果不選則整個表的所有行都被更新

四、查
  1.普通查詢
   語法:select <列名> from <表名> [where <查詢條件表達試>] [order by <排序的列名>[asc或desc]]
   1).查詢所有數據行和列
    例:select * from a
    說明:查詢a表中所有行和列
   2).查詢部分行列–條件查詢
    例:select i,j,k from a where f=5
    說明:查詢表a中f=5的所有行,並顯示i,j,k3列
   3).在查詢中使用AS更改列名
    例:select name as 姓名 from a whrer xingbie=’男’
    說明:查詢a表中性別為男的所有行,顯示name列,並將name列改名為(姓名)顯示
   4).查詢空行
    例:select name from a where email is null
    說明:查詢表a中email為空的所有行,並顯示name列;SQL語句中用is null或者is not null來判斷是否為空行
   5).在查詢中使用常量
    例:select name ‘唐山’ as 地址 from a
    說明:查詢表a,顯示name列,並添加地址列,其列值都為’唐山’
   6).查詢返回限制行數(關鍵字:top percent)
    例1:select top 6 name from a
    說明:查詢表a,顯示列name的前6行,top為關鍵字
    例2:select top 60 percent name from a
    說明:查詢表a,顯示列name的60%,percent為關鍵字
   7).查詢排序(關鍵字:order by , asc , desc)
    例:select name
      from a
      where chengji>=60
      order by desc
    說明:查詢表中chengji大於等於60的所有行,並按降序顯示name列;默認為ASC升序


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM