關於c 中資料庫的呼叫

2021-05-28 05:26:14 字數 465 閱讀 4892

其實c#中資料庫的呼叫很簡單

只要幾句**就可以對資料庫進行增刪查改

今天好多人都問了我這個問題 我很糾結  這麼簡單的問題 我就說  你們把**弄過去自己看去

sqlconnection con = new sqlconnection();

con.connectionstring = "server=伺服器名; integrated security=true; initial catalog=資料庫名";

定義str=想要在資料庫中進行的運算 增刪查改

sqlcommand cmd = new sqlcommand(str, con);

con.open();//呼叫資料庫

sqldatareader myreader;

myreader = cmd.executereader();

接下來進行資料庫的執行

con.close();//資料庫關閉

關於資料庫中的NULL

1 不能對null使用等號 2 不等對null相加 相乘 結果都是null 10倍的null仍舊是null 3 不要使用特殊標記 1 0 來代替null 4 null不是字串 null string 返回null 並不是string 5 not null 返回null 並不是true 6 null ...

c語言呼叫Mysql資料庫

一 mysql資料庫的c語言常用介面api 1 初始化mysql控制代碼 mysql pconn pconn mysql init null 2 連線資料庫 if mysql real connect pconn,localhost root root test 0,null,0 3 運算元據庫 第...

ASP呼叫Acess資料庫中的查詢

首先讓我們先來了解一下 mand物件所提供的屬性和方法以及它們的相應功能 activeconnection屬性 建立與connection通道的鏈結關係 mandtext屬性 指定資料查詢資訊 mandtimeout屬性 開始執行資料查詢後允許繼續執行的最長時間 mandtype屬性 指定資料查詢資...