『壹』 C#asp.net 連接使用sqlite 資料庫的代碼怎麼寫
引用命名空間
using System.Data;
using System.Data.SqlClient;
//1.連接
string connString = "Data Source=.;Database=db_BBS;Integrated Security=True;";
SqlConnection conn = new SqlConnection(connString);
try
{
conn.Open();
SqlCommand comm = new SqlCommand();
comm.Connection = conn;
}
catch (Exception ex)
{
throw;//蠢逗棗指螞來拋帶拆出發生異常的根本來源
}
finally
{
conn.Close();
}
『貳』 ASP.NET中WEB.config連接網路伺服器SQL 2005資料庫,代碼怎麼寫
ASP.NET程序中的web.config中的連接字元串為:<add name="Conn" connectionString="server=.;uid=sa;pwd=seeyon;database=Dsystem;" />,name是指的在程序寫好的鏈接資料庫的方法名,connectionString中就是我們與資料庫連接配置參數:server表示資料庫伺服器的名字和IP地址,uid是指資料庫的用戶名,pwd是資料庫登錄密碼,database是指資料庫的名字。
ASP.NET程序與sql server 2005資料庫連接不單是需要在配置文件中配置好資料庫名、用戶名、密碼、IP地址。還需要在程序中也要寫好與資料庫的連接方法,然後在web.config中來調用才能正常連接,這樣程序在使用過程中才不會報與資料庫連接錯誤。
1、ASP.NET程序與sql server 2005資料庫連接方法代碼:(註:與資料庫連接的方法有很多,但是都是大同小異)
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Text;
usingSystem.Data;
usingSystem.Configuration;
usingSystem.Data.SqlClient;
usingSystem.Data.OleDb;
usingSystem.Data.Sql;
namespaceDLL
{
publicclassDBHelper
{
publicstaticstringconn=ConfigurationManager.ConnectionStrings["Conn"].ToString();
//publicstaticstringconn=ConfigurationManager.AppSettings["SqlConnString"].ToString();
staticSqlConnectioncon=null;
///<summary>
///判斷資料庫連接狀態
///</summary>
///<returns></returns>
()
{
try
{
if(con==null)
{
con=newSqlConnection(conn);
}
if(con.State==ConnectionState.Broken)
{
con.Close();
con.Open();
}
if(con.State==ConnectionState.Closed)
{
con.Open();
}
}
catch(Exceptionex)
{
throwex;
}
returncon;
}
(stringsql,SqlParameter[]par)
{
SqlCommandcom=newSqlCommand(sql,getConnection());
if(par!=null)
{
foreach(SqlParameterparameterinpar)
{
if(parameter.Value==null)
{
parameter.Value=DBNull.Value;
}
com.Parameters.Add(parameter);
}
}
returncom;
}
publicstaticDataSetDataset(stringsql,SqlParameter[]par,stringtableName)
{
DataSetset=newDataSet();
SqlCommandcomm=NewMethod(sql,par);
if(tableName==null||tableName=="")
{
tableName="tableName";
}
SqlDataAdapterdapter=newSqlDataAdapter(sql,getConnection());
dapter.Fill(set,tableName);
returnset;
}
publicstaticDataTableTable(stringsql,SqlParameter[]par,stringtableName)
{
DataTabletable=newDataTable();
try
{
table=Dataset(sql,par,tableName).Tables[0];
returntable;
}
catch(Exceptionex)
{
throwex;
}
}
(stringsql,SqlParameter[]par)
{
SqlDataReaderred=null;
SqlCommandcomm=NewMethod(sql,par);
try
{
red=comm.ExecuteReader();
}
catch(Exceptionex)
{
red.Close();
con.Close();
throwex;
}
returnred;
}
publicstaticintExecut(stringsql,SqlParameter[]par)
{
intnum=0;
SqlCommandcom=NewMethod(sql,par);
try
{
num=com.ExecuteNonQuery();
}
catch(Exceptionex)
{
num=0;
}
con.Close();
returnnum;
}
}
}
2、web.config配置文件的連接代碼為:
<?xmlversion="1.0"encoding="UTF-8"?>
<!--
注意:除了手動編輯此文件外,您還可以使用
Web管理工具來配置應用程序的設置。可以使用VisualStudio中的
「網站」->「Asp.Net配置」選項。
設置和注釋的完整列表可以在
machine.config.comments中找到,該文件通常位於
WindowsMicrosoft.NetFrameworkvx.xConfig中
-->
<configuration>
<appSettings>
</appSettings>
<!--資料庫連接字元串-->
<connectionStrings>
<addname="Conn"connectionString="server=.;uid=sa;pwd=seeyon;database=Dsystem;"/>
</connectionStrings>
<system.web>
<!--
設置compilationdebug="true"可將調試符號
插入已編譯的頁面中。
但由於這會影響性能,因此請僅在開發過程中將此值
設置為true。
-->
<compilationdebug="true">
</compilation>
<!--
通過<authentication>節可以配置
安全身份驗證模式,ASP.NET
使用該模式來識別來訪用戶身份。
-->
<authenticationmode="Windows"/>
<!--
如果在執行請求的過程中出現未處理的錯誤,
則通過<customErrors>節
可以配置相應的處理步驟。具體而言,
開發人員通過該節可配置要顯示的html錯誤頁,
以代替錯誤堆棧跟蹤。
<customErrorsmode="RemoteOnly"defaultRedirect="GenericErrorPage.htm">
<errorstatusCode="403"redirect="NoAccess.htm"/>
<errorstatusCode="404"redirect="FileNotFound.htm"/>
</customErrors>
-->
</system.web>
<system.webServer>
<defaultDocument>
<files>
<addvalue="Login.aspx"/>
</files>
</defaultDocument>
</system.webServer>
</configuration>
『叄』 ASP.NET中操作SQL資料庫(連接字元串的配置及獲取)
在WebConfig中配置資料庫連接字元串 代碼如下
復制代碼 代碼如下: <connectionStrings>態好唯 <add name=ConnectionString connectionString="user id=用戶名;password=密碼;initial catalog=資料庫名稱;data source=服帆培務器名稱"/> </connectionStrings>然後在Webform_ aspx cs裡面獲取連接字元串 要添加如下引用
復制代碼 代碼如下: using System Configuration; using System Data; using System Data SqlClient; 復制代碼 代碼如下: SqlConnection con; protected void Page_Load(object sender EventArgs e) { ConnectDB(); } private void ConnectDB() { string ConString = ConfigurationManager ConnectionStrings["ConnectionString"] ConnectionString; con = new SqlConnection(ConString); con Open(); SqlCommand = new SqlCommand(); SqlDataReader sdr; string sqlstr = "select * from item"; CommandText = sqlstr; Connection = con; sdr = ExecuteReader(); while (sdr Read()) { Response Write(sdr["欄位名"] ToString()+"<襪敬/br>"); } sdr Close(); sdr = null; } lishixin/Article/program/net/201311/14106
『肆』 ASP.NET連接資料庫有哪幾種方法
連接Access
首先看一個例子代碼片斷:
程序代碼:
--------------------------------------------------------------------------------
using
System.Data;
using
System.Data.OleDb;
......
string
strConnection="Provider=Microsoft.Jet.OleDb.4.0;";
strConnection+=@"Data
Source=C:\BegASPNET\Northwind.mdb";
OleDbConnection
objConnection=new
OleDbConnection(strConnection);
......
objConnection.Open();
objConnection.Close();
......
--------------------------------------------------------------------------------
解釋:
連接Access資料庫需要導入額外的命名空間,所以有了最前面的兩條using命令,這是必不可少的!
strConnection這個變數里存放的是連接資料庫所需要的連接字元串,他指定了要使用的數據提供者和要使用的數據源.
"Provider=Microsoft.Jet.OleDb.4.0;"是指數據提供者,這里使用的是Microsoft
Jet引擎,也就是Access中的數據引擎,asp.net就是靠這個和Access的資料庫連接的.
"Data
Source=C:\BegASPNET\Northwind.mdb"是指明數據源的位置,他的標准形式是"Data
Source=MyDrive:MyPath\MyFile.MDB".
ps:
1."+="後面的"@"符號是防止將後面字元串中的"\"解析為轉義字元.
2.如果要連接的資料庫文件和當前文件在同一個目錄下,還可以使用如下的方法連接:
strConnection+="Data
Source=";
strConnection+=MapPath("Northwind.mdb");
這樣就可以省得你寫一大堆東西了!
3.要注意連接字元串中的參數之間要用分號來分隔.
"OleDbConnection
objConnection=new
OleDbConnection(strConnection);"這一句是利用定義好的連接字元串來建立了一個鏈接對象,以後對資料庫的操作我們都要和這個對象打交道.
"objConnection.Open();"這用來打開連接.至此,與Access資料庫的連接完成.其餘操作(插入,刪除...)請參閱相關書籍
連接SQL
Server
例子代碼片斷:
程序代碼:
--------------------------------------------------------------------------------
using
System.Data;
using
System.Data.SqlClient;
...
string
strConnection="user
id=sa;password=;";
strConnection+="initial
catalog=Northwind;Server=YourSQLServer;";
strConnection+="Connect
Timeout=30";
SqlConnection
objConnection=new
SqlConnection(strConnection);
...
objConnection.Open();
objConnection.Close();
...
--------------------------------------------------------------------------------
解釋:
連接SQL
Server資料庫的機制與連接Access的機制沒有什麼太大的區別,只是改變了Connection對象和連接字元串中的不同參數.
首先,連接SQL
Server使用的命名空間不是"System.Data.OleDb",而是"System.Data.SqlClient".
其次就是他的連接字元串了,我們一個一個參數來介紹(注意:參數間用分號分隔):
"user
id=sa":連接資料庫的驗證用戶名為sa.他還有一個別名"uid",所以這句我們還可以寫成"uid=sa".
"password=":連接資料庫的驗證密碼為空.他的別名為"pwd",所以我們可以寫為"pwd=".
這里注意,你的SQL
Server必須已經設置了需要用戶名和密碼來登錄,否則不能用這樣的方式來登錄.如果你的SQL
Server設置為Windows登錄,那麼在這里就不需要使用"user
id"和"password"這樣的方式來登錄,而需要使用"Trusted_Connection=SSPI"來進行登錄.
"initial
catalog=Northwind":使用的數據源為"Northwind"這個資料庫.他的別名為"Database",本句可以寫成"Database=Northwind".
"Server
=YourSQLServer":使用名為"YourSQLServer"的伺服器.他的別名為"Data
Source","Address","Addr".如果使用的是本地資料庫且定義了實例名,則可以寫為"Server=(local)\實例名";如果是遠程伺服器,則將"(local)"替換為遠程伺服器的名稱或IP地址.
"Connect
Timeout=30":連接超時時間為30秒.
在這里,建立連接對象用的構造函數為:SqlConnection.
其餘的就和Access沒有什麼區別了!
『伍』 asp.net 如何連接資料庫並且將注冊信息插入資料庫要代碼
stringconnStr=@"......";//連接字元串,裡面的內容樓主自己填
SqlConnectionconn=newSqlConnection(connStr);//打纖隱開資料庫連接
conn.Open();//打開游鎮連接
stringsql=@"insertinto...";//插入語句,樓主自己構造
SqlCommandcomm=newSqlCommand(sql,conn);
comm.Parameters.AddWithValue("參數名",參數值);//sql語句神豎粗中如果有參數,則添加
intresult=comm.ExecuteNonQuery();//獲取結果,此處一般為1
conn.Close();//關閉資料庫連接
if(result==1){
//插入成功
}else{
//插入失敗
}
『陸』 ASP.net怎麼連接mysql資料庫進行數據操作
1、資源:Mysql-5.6.24-win32、VS2013、mysql-connector-odbc-5.3.6-win32;
2、ODBC下載:在Mysql官網可下載Mysql ODBC,注意,什麼版本的mysql配什麼版本的ODBC,很重要!
輸入SQL語句 select * from Book(Book是資料庫中的一個表):
點擊 下一步->完成。
軟體會為我們自動宏櫻生成代碼:
行程序,表Book中的數據以表格的形式呈現出來:
『柒』 用c# asp.net做實現與資料庫的連接,增刪改查
這個很簡單的。
可以選用ado.net或者orm框架實現。比如說EF用dbfirst,設計好好表,能傻瓜式的實現表的增刪查改。實在不會用ef這些,可以選用動軟代碼生成器,生成相關代碼。實現curd.