|
在ASP.NET中,如何数据库的连接调用? |
|
作者:客服中心 文章来源:本站原创 点击数: 更新时间:2007-11-20 |
|
以下是我们用C#来实现的,见下列实例代码,请万网独立服务器客户参考: < %@ Import Namespace="System.Data" %> <%@ Import Namespace="System.Data.SQL" %> <html> < script language="C#" runat="server"> ' 声明C# public DataSet dsCustomer; protected void Page_Load(Object Src, EventArgs E ) { ' 在打开页面时连接数据库 SQLConnection myConnection = new SQLConnection ("server=127.0.0.1;uid=xxx;pwd=*****;database=***_db"); SQLDataSetCommand CustomersDSCommand = new SQLDataSetCommand("select * from customers", myConnection); dsCustomer = new DataSet(); CustomersDSCommand.FillDataSet(dsCustomer,"Customers"); foreach (DataRow Customer in dsCustomer.Tables["Customers"].Rows) { Response.Write(Customer["CustomerId"].ToString() + "<br> " ); } } </script> <body> </body> </html> </td> </tr> </table> </body> |
返回上一页 |