客服中心

在线咨询 (时间:8:30~24:00)

热门关键字

  • top域名4元促销
  • .CN域名开放注册!
  • 独立IP虚拟主机仅需198元/年
新闻公告

【数据库相关】在ASP.NET中,如何数据库的连接调用?



来源:新安数据发布时间:2013-7-25


以下是我们用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>