黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP.NET 數(shù)據(jù)庫連接

asp.net web forms - 數(shù)據(jù)庫連接

ado.net 也是 .net 框架的組成部分。ado.net 用于處理數(shù)據(jù)訪問。通過 ado.net,您可以操作數(shù)據(jù)庫。

examples

嘗試一下 - 實(shí)例

數(shù)據(jù)庫連接 - 綁定到 datalist 控件

數(shù)據(jù)庫連接 - 綁定到 repeater 控件

什么是 ado.net?

  • ado.net 是 .net 框架的組成部分
  • ado.net 由一系列用于處理數(shù)據(jù)訪問的類組成
  • ado.net 完全基于 xml
  • ado.net 沒有 recordset 對(duì)象,這一點(diǎn)與 ado 不同

創(chuàng)建數(shù)據(jù)庫連接

在我們的實(shí)例中,我們將使用 northwind 數(shù)據(jù)庫。

首先,導(dǎo)入 "system.data.oledb" 命名空間。我們需要這個(gè)命名空間來操作 microsoft access 和其他 ole db 數(shù)據(jù)庫提供商。我們將在 page_load 子例程中創(chuàng)建這個(gè)數(shù)據(jù)庫的連接。我們創(chuàng)建一個(gè) dbconn 變量,并為其賦值一個(gè)新的 oledbconnection 類,這個(gè)類帶有指示 ole db 提供商和數(shù)據(jù)庫位置的連接字符串。然后我們打開數(shù)據(jù)庫連接:

<%@ import namespace="system.data.oledb" %>

<script runat="server">
sub page_load
dim dbconn
dbconn=new oledbconnection("provider=microsoft.jet.oledb.4.0;
data source=" & server.mappath("northwind.mdb"))
dbconn.open()
end sub
</script>

注釋:這個(gè)連接字符串必須是沒有折行的連續(xù)字符串!

創(chuàng)建數(shù)據(jù)庫命令

為了指定需從數(shù)據(jù)庫取回的記錄,我們將創(chuàng)建一個(gè) dbcomm 變量,并為其賦值一個(gè)新的 oledbcommand 類。這個(gè) oledbcommand 類用于發(fā)出針對(duì)數(shù)據(jù)庫表的 sql 查詢:

<%@ import namespace="system.data.oledb" %>

<script runat="server">
sub page_load
dim dbconn,sql,dbcomm
dbconn=new oledbconnection("provider=microsoft.jet.oledb.4.0;
data source=" & server.mappath("northwind.mdb"))
dbconn.open()
sql="select * from customers"
dbcomm=new oledbcommand(sql,dbconn)
end sub
</script>

創(chuàng)建 datareader

oledbdatareader 類用于從數(shù)據(jù)源中讀取記錄流。datareader 是通過調(diào)用 oledbcommand 對(duì)象的 executereader 方法來創(chuàng)建的:

<%@ import namespace="system.data.oledb" %>

<script runat="server">
sub page_load
dim dbconn,sql,dbcomm,dbread
dbconn=new oledbconnection("provider=microsoft.jet.oledb.4.0;
data source=" & server.mappath("northwind.mdb"))
dbconn.open()
sql="select * from customers"
dbcomm=new oledbcommand(sql,dbconn)
dbread=dbcomm.executereader()
end sub
</script>

綁定到 repeater 控件

然后,我們綁定 datareader 到 repeater 控件:

實(shí)例

<%@ import namespace="system.data.oledb" %>

<script runat="server">
sub page_load
dim dbconn,sql,dbcomm,dbread
dbconn=new oledbconnection("provider=microsoft.jet.oledb.4.0;
data source=" & server.mappath("northwind.mdb"))
dbconn.open()
sql="select * from customers"
dbcomm=new oledbcommand(sql,dbconn)
dbread=dbcomm.executereader()
customers.datasource=dbread
customers.databind()
dbread.close()
dbconn.close()
end sub
</script>

<html>
<body>

<form runat="server">
<asp:repeater id="customers" runat="server">

<headertemplate>
<table border="1" width="100%">
<tr>
<th>companyname</th>
<th>contactname</th>
<th>address</th>
<th>city</th>
</tr>
</headertemplate>

<itemtemplate>
<tr>
<td><%#container.dataitem("companyname")%></td>
<td><%#container.dataitem("contactname")%></td>
<td><%#container.dataitem("address")%></td>
<td><%#container.dataitem("city")%></td>
</tr>
</itemtemplate>

<footertemplate>
</table>
</footertemplate>

</asp:repeater>
</form>

</body>
</html>

關(guān)閉數(shù)據(jù)庫連接

如果不再需要訪問數(shù)據(jù)庫,請(qǐng)記得關(guān)閉 datareader 和數(shù)據(jù)庫連接:

dbread.close()
dbconn.close()

相關(guān)文章