首页 公务员 公选 公考 司考 会计 报关员 考研 自考 演讲 写作 科技 网络 娱乐 管理 好友 小组
两种没有使用绑定的 数据显示
日期:5月31日 16时  来源:网摘  佚名  阅读:点击...
【字体: 【页面调色版 
  

  


/*
豆腐制作 都是精品
http://www.asp888.net 豆腐技术站
如转载 请保留版权信息
*/
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SQL" %>
<html>
<script language="VB" runat="server">

Dim dsCustomer as DataSet
Dim CustomersDSCommand as SQLDataSetCommand
Protected Sub Page_Load(Src as object, E as EventArgs )
'读出数据的第一种方法
Dim myConnection as SQLConnection
Dim dtReader AS SQLDataReader
myConnection = new SQLConnection("server=localhost;uid=sa;pwd=;database=northwind")
CustomersDSCommand = new SQLDataSetCommand("SELECT * FROM customers", myConnection)
dsCustomer = new DataSet()
CustomersDSCommand.FillDataSet(dsCustomer, "Customers")
Dim Customer as DataRow
For Each Customer In dsCustomer.Tables("Customers").Rows
Response.Write(Customer("CustomerId").ToString() + "<BR>" )
Next
End Sub
Sub displaydata()
'读出数据的第二种方法
Dim dtReader AS SQLDataReader
Dim sqlcmd AS SQLCommand
Dim sqlserver AS String
Dim sql AS String
sqlserver = "server=localhost;uid=sa;password=;database=northwind"
SQL = "Select * from customers"
sqlcmd = New SQLCommand(sql,sqlserver)
sqlcmd.ActiveConnection.Open()
sqlcmd.execute(dtreader)
Response.write("再进行数据库open后,我们来显示这个Table 的某一个字段的数值")
While dtReader.Read()
response.write (dtreader.Item("CustomerId") & "<br>")
End While
End Sub
</script>

<body>
</body>
</html>


作者:豆腐()

       
       
精彩图片
相关文章
最新更新
热评文章
公务员专题
党政专题 电信行业 公检法院 医疗卫生
工商税务 新闻信息 农林畜牧 计生服务
教育科技 金融保险 企业资源 机械化工
电力交通 行风评议 保先教育 讲话报告
公共机关 农村工作 秘书研究 建筑设计
八荣八耻 新 农 村