mysql-connector-net-6.3.8.msi
安裝mysql-connector-net
在vs2012中,在工程的引用中加入mysql.data.dll
mysqlconnection conn = new mysqlconnection();
string connstr = string.format("server=;user=; password=; database=mysql; pooling=false",
sserver, suser, spassword);
conn.connectionstring = connstr;
try
catch (exception ex)
這裡僅介紹了select語句的執行,使用executereader函式。更新和刪除語句有另外的mysqlcommand的函式來處理。string sql = string.format("select networkperiod, parttype from alldb.part where partid = ",
ipartid);
mysqlcommand cmd = new mysqlcommand(sql, conn);
mysqldatareader rdr = cmd.executereader();
if (rdr.hasrows)
rdr.close();
這裡先判斷了rdr是否有資料,然後使用read(),否則會有異常丟擲。
使用c#訪問mysql還比較簡單,值得一試。
c 訪問mysql資料庫
c 訪問mysql資料庫,實現 show database功能 連線之前。先用mysql init初始化mysql連線控制代碼 1.mysql init mysql 使用mysql real connect連線server,其引數依次為mysql控制代碼。serverip位址。登入mysql的use...
mysql資料庫訪問
實現在不是本機的機器上訪問mysql資料庫有 1.開啟連線,關閉放火牆 2.建立乙個允許遠端連線的訪問使用者 系統預設的root使用者預設為遠端無法連線 格式 grant select on 資料庫.to 使用者名稱 登入主機 identified by 密碼 例1 增加乙個使用者test1密碼為a...
C 訪問和操作MYSQL資料庫
這裡介紹下比較簡單的方式,引用mysql.data.dll然後新增乙個mysqlhelper類來對mysql資料庫進行訪問和操作。1.將mysql.data.dll引用到你的專案中 新增引用後在你的資料庫操作類 如mysqlhelper.cs 中新增引用宣告 using mysql.data usi...