C 訪問SQL 三種更新記錄的方法

2022-09-21 16:15:10 字數 561 閱讀 9251

使用者通過c#windows窗體應用程式訪問並更新資料庫可有三種方式,下面是三種方式的主要**:

1.拼接字串

private void button1_click_1(object sender, eventargs e)

}

2.使用引數

private void button2_click(object sender, eventargs e)

3.使用儲存過程

private void button3_click(object sender, eventargs e)

資料庫中新建儲存過程:

create procedure updatestudentinfo

(@username nvarchar(20),

@userid nvarchar(20)

)as update student

set sname=@username where sno=@userid

go

C 訪問SQL 三種更新記錄的方法

使用者通過c windows窗體應用程式訪問並更新資料庫可有三種方式,下面是三種方式的主要 1.拼接字串 private void button1 click 1 object sender,eventargs e 2.使用引數 private void button2 click object s...

Sql三種分頁方法

分頁三種方法 第一種 row number over order by orgid as indexs 大於pagesize pageindex,少於等於pagesize pageindex 1 效率最高 select from sys user as a left join select row ...

字典訪問的三種方法

定義字典 dic 方法一 for key in dic print key,dic key print key str dic key 結果 a hello ahello c you cyou b how bhow 細節 print key,dic key 後面有個逗號,自動生成乙個空格 print...