當前位置:首頁 » 數據倉庫 » vs2012資料庫使用
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

vs2012資料庫使用

發布時間: 2023-08-10 13:59:00

『壹』 如何通過VS2012或在C#中連接mariaDB資料庫

定中襲義連接字元串:string connStr="連接字元串"; //在「伺服器資源管理器」中找到你的資料庫,反鍵,屬性,找到連接字元串,復制出來
定義sqlconnection對象,首先引用system.data.sqlclient命名空間;
sqlconnection sqlConn=new sqlconnection(connStr);//帶有一個參數,此喚即上面定義的連接字元串。
3.打開資料庫連賣扒兄接:sqlConn.open(); //調用open()方法
至此,資料庫已經連接上,然後根據你的實際需要決定後邊干怎麼做,如果是插入、修改、刪除,建議用sqlcommand ,如果是查詢,建議用sqldataadapter;

『貳』 將MySQL資料庫連接到VS2012中

mysql官方網站說得很清楚:
Connector/Net is a fully-managed ADO.NET driver for MySQL.
Starting with version 6.7, Connector/Net will no longer include the MySQL for Visual Studio integration. That functionality is now available in a separate proct called MySQL for Visual Studio available using the MySQL Installer for Windows (see http://dev.mysql.com/tech-resources/articles/mysql-installer-for-windows.html).

使用Connector/Net 6.6.6版本測試通過!

或根據官網說明,下載mysql-connector-net-6.8.3-noinstall.zip。
Select Platform… .NET & Mono 再下載。

『叄』 怎麼使用vs2012自帶的資料庫

using (SqlConnection cn = new SqlConnection())
{
//VS2012 自帶的SQL為 localdb,連接字元串有一點點不一樣,其他功能都一樣操作
cn.ConnectionString = @"data source=(localdb)\v11.0;Initial Catalog=C:\DATA\APPLICATIONDATABASE.MDF;integrated security=True;connect timeout=120";
cn.Open();
SqlCommand cmd = new SqlCommand();
cmd.Connection = cn;
cmd.CommandText = "select * from table";

SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new DataSet();
da.Fill(ds);
return ds;
}