c winfrom增刪改查 其它

2021-09-25 04:30:35 字數 1453 閱讀 8691

1.查詢

//1.

找一把鑰匙

string

key =

@"data source=.;initial catalog=dbbook;integrated security=true";

//2.

鋪一條路

sqlconnection

sc =

newsqlconnection

(key);

trycatch

(exception

ex)finally

2.增刪改

//1.

找一把鑰匙

string

key =

@"data source=.;initial catalog=dbbook;integrated security=true";

//2.

鋪一條路

sqlconnection

sc =  

newsqlconnection

(key);

try}catch

(exception

ex)

finally

3.listview進行查詢

//1.

找一把鑰匙

string

key =

@"data source=.;initial catalog=dbbook;integrated security=true";

//2.

鋪一條路

sqlconnection

sc =  

newsqlconnection

(key);

try4.關閉窗體this.close();

5.退出程式:

dialogresult dr = messagebox.show("

是否確定要退出?","退出提示",messageboxbuttons.yesno,messageboxicon.question);

if (dr == dialogresult.yes)

6.窗體跳轉

目標窗體名  變數 =  new 目標窗體名();

如果需要傳值的

變數.目標窗體名.控制項名.text=當前窗體控制項名.text;

變數.show();

7.非空判斷:

清空內容:--輸入內容有誤 清除它

if(控制項.text="")

MongoDB增刪改查及其它常用操作

sql術語 mongodb術語 解釋database database 資料庫table collection 資料庫表 集合 rowdocument 資料記錄行 文件 column field 資料字段 域 index index 索引table joins 表連線,mongodb不支援 prim...

mysql增刪改查效果 mysql增刪改查

檢視所有資料庫 mysql show databases 建立乙個庫ghd並指定字符集為utp8 mysql create database ghd charset utf8 檢視mysql支援的字符集 mysql show char set 建立乙個表,並設定id為主鍵 create table ...

mysql增刪改查擴充套件 MySQL增刪改查

1 插入 insert 1 insert into 表名 values 值1 值2 例子 insert into t1 values zengsf 23 fengshao 22 2 insert into 表名 欄位1,values 值1 例子 insert into t1 name values ...