C mysql 四種運算元據庫方法封裝

2021-07-03 12:46:08 字數 693 閱讀 2789

1、mysqlexecutereader,我這裡是用mysqlexecutereader將從資料庫裡面取得的資料放到乙個二維陣列裡面, mysqlexecutereaderrows主要是為了取得資料集裡面行數,要兩次連線資料庫進行查詢,對資料庫壓力比較大,可以在直接在mysqlexecutereader採用其他方法獲取資料集行數。

public int mysqlexecutereaderrows(string sql) 

con.close();

return i;

}public string[,] mysqlexecutereader(string sql,int cloums)

m++;

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

return result;}

2、mysqlexecutenonquery   這個主要是為了獲取sql語句是否在資料庫裡操作成功。

public string mysqlexecutenonquery(string sql)

3、mysqlexecutescalar

public string mysqlexecutescalar(string sql)

4、將取得的資料集直接返回,以便直接利用資料集填充datagridview

public dataset mysqlsqldataadapter(string sql)

Yii運算元據庫的3種方法

一 執行原生太sql的pdo方式。複製 如下 sql 原生態sql語句 xx model dbconnection createcommand sql execute 二 active record方式 1 new 方式 複製 如下 post new post post title sample p...

PDO運算元據庫的方法

php與mysql的連線有三種api介面,分別是 php的mysql擴充套件 php的mysqli擴充套件 php資料物件 pdo 在這三種方法中,民間 很多是傾向於使用pdo,因為其不擔有跨庫 可以和各個資料庫連線和處理 的優點,更有讀寫速度快的特點。pdo不僅能 防止了sql注入問題,同時是物件...

php pdo運算元據庫的方法

pdo 安裝 你可以通過 php 的 phpinfo 函式來檢視是否安裝了pdo擴充套件。1.在 unix linux系統上安裝 pdo 在unix上或linux上你需要新增以下擴充套件 extension pdo.so 2.在windows安裝pdo extension php pdo.dll 除...