Jquery中文网 www.jquerycn.cn
Jquery中文网 >  脚本编程  >  Asp.net  >  正文 asp.net中通用数据库连接程序代码

asp.net中通用数据库连接程序代码

发布时间:2017-12-13   编辑:www.jquerycn.cn
jquery中文网为您提供asp.net中通用数据库连接程序代码等资源,欢迎您收藏本站,我们将为您提供最新的asp.net中通用数据库连接程序代码资源
数据库连接是所有程序开发是会用到的,只是不同程序与数据库连接的方法不一样,下面我来介绍asp.net中数据库连接代码,有需要的朋友可参考。

View Code

<table width="620" align="center" border="0" cellpadding="1" cellspacing="1" style="background:#FB7"> <tr> <td width="464" height="27" bgcolor="#FFE7CE"> 代码如下</td> <td width="109" align="center" bgcolor="#FFE7CE" style="cursor:pointer;" onclick="doCopy('copy2741')">复制代码</td> </tr> <tr> <td height="auto" colspan="2" valign="top" bgcolor="#FFFFFF" style="padding:10px;" class="copyclass" id=copy2741>

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>


<center>
<h2><font face="宋体">访问数据库的通用代码示例</font>
</h2>
</center>
<body>
    <form id="form1" runat="server">
    <div>

    <font face="宋体">
<p align="center">1.请输入相应数据库连接字符串</p>
<p align="center">
<asp:TextBox id="ConnStrTextBox" runat="server" Width="600"></asp:TextBox>
</p>
<p align="center">2.请输入相应SQL查询命令语句</p>
<p align="center">
<asp:TextBox id="SqlTextTextBox" runat="server" Width="600"></asp:TextBox>
</p>
<p align="center">3.请选择所连接的数据库类型</p>
<p align="center">
    <asp:DropDownList ID="DBDropDownList" runat="server" Width="204px">
        <asp:ListItem Selected="True">Access</asp:ListItem>
        <asp:ListItem>SQLServer</asp:ListItem>
        <asp:ListItem>Oracle</asp:ListItem>
        <asp:ListItem>DB2</asp:ListItem>
    </asp:DropDownList>
</p>
<p align="center">
   
<asp:Button ID="Button1" runat="server" onclick="Button1_Click"  Text="通用数据库连接代码测试" />
   
</p>
<p align="center">
<asp:Label id="lblMessage" runat="server" Font-Bold="True" ForeColor="Red"></asp:Label>
</p>
    </form>
</font>
</div>


asp.net页面

 

<table width="620" align="center" border="0" cellpadding="1" cellspacing="1" style="background:#FB7"> <tr> <td width="464" height="27" bgcolor="#FFE7CE"> 代码如下</td> <td width="109" align="center" bgcolor="#FFE7CE" style="cursor:pointer;" onclick="doCopy('copy9531')">复制代码</td> </tr> <tr> <td height="auto" colspan="2" valign="top" bgcolor="#FFFFFF" style="padding:10px;" class="copyclass" id=copy9531>

using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        //通用数据库连接代码,这里以连接Access数据库为测试示例
        if (!IsPostBack)
        {
           ConnStrTextBox.Text = "Provider=Microsoft.Jet.OLEDB.4.0; Data source=" Server.MapPath("User.mdb");
           SqlTextTextBox.Text = "Select COUNT(*) From Info Where Name='小顾'";
            lblMessage.Text = "";
        }
    }
    protected void Button1_Click(object sender, EventArgs e)
    {

        //定义数据库连接字符串
        string MyConnectionString = this.ConnStrTextBox.Text;
        //定义查询操作的SQL语句
        string MySQL = this.SqlTextTextBox.Text;
        //定义所要连接的数据库类型为Access
        string MyType = this.DBDropDownList.SelectedValue;
        System.Data.IDbConnection MyConnection = null;
        // 根据数据库类型,创建相应的 Connection 对象
        switch (MyType)
        {
            //选择的数据库类型为“SQLServer”,创建SqlConnection类数据库连接对象
            case "SQLServer":
                MyConnection = new System.Data.SqlClient.SqlConnection(MyConnectionString);
                break;
            case "Oracle":
                MyConnection = new System.Data.OracleClient.OracleConnection(MyConnectionString);
                break;
            //选择的数据库类型为“Access”,创建OleDbConnection类数据库连接对象
            case "Access":
                MyConnection = new System.Data.OleDb.OleDbConnection(MyConnectionString);
                break;
            //选择的数据库类型为“DB2”,创建OleDbConnection类数据库连接对象
            case "DB2":
                MyConnection = new System.Data.Odbc.OdbcConnection(MyConnectionString);
                break;
            default:
                MyConnection = new System.Data.OleDb.OleDbConnection(MyConnectionString);
                break;
        }
        Execute(MyConnection, MySQL);
    }
    public void Execute(System.Data.IDbConnection MyConnection, string strquery)
    {
        //使用 CreateCommand() 方法生成 Command 对象
        System.Data.IDbCommand MyCommand = MyConnection.CreateCommand();
        //执行定义的SQL查询语句
        MyCommand.CommandText = strquery;
        try
        {
            //打开数据库连接
            MyConnection.Open();
            //定义查询的结果信息
            String MyInfo = "测试连接成功!符合查询要求的记录共有:" MyCommand.ExecuteScalar().ToString() "条!";
            //输出查询结果信息
            lblMessage.Text = MyInfo;
        }
        catch (Exception ex)
        {
            //输出错误异常
            Response.Write(ex.ToString());
        }
        finally
        {
            //关闭数据库连接
            MyConnection.Close();
        }
    }
}

本段程序的核心代码为

<table width="620" align="center" border="0" cellpadding="1" cellspacing="1" style="background:#FB7"> <tr> <td width="464" height="27" bgcolor="#FFE7CE"> 代码如下</td> <td width="109" align="center" bgcolor="#FFE7CE" style="cursor:pointer;" onclick="doCopy('copy6151')">复制代码</td> </tr> <tr> <td height="auto" colspan="2" valign="top" bgcolor="#FFFFFF" style="padding:10px;" class="copyclass" id=copy6151>

//选择的数据库类型为“SQLServer”,创建SqlConnection类数据库连接对象
case "SQLServer":
           MyConnection = new System.Data.SqlClient.SqlConnection(MyConnectionString);
                break;
case "Oracle":
           MyConnection = new System.Data.OracleClient.OracleConnection(MyConnectionString);
                break;
            //选择的数据库类型为“Access”,创建OleDbConnection类数据库连接对象
case "Access":
           MyConnection = new System.Data.OleDb.OleDbConnection(MyConnectionString);
                break;
            //选择的数据库类型为“DB2”,创建OleDbConnection类数据库连接对象
case "DB2":
           MyConnection = new System.Data.Odbc.OdbcConnection(MyConnectionString);
                break;
default:
            MyConnection = new System.Data.OleDb.OleDbConnection(MyConnectionString);
                break;

如果你要其它连接我们还可以增加一些连接代码哦。

您可能感兴趣的文章:
asp.net性能优化方法-数据库访问性能优化
asp.net 在webcofig中连接数据库二种方式
ASP.NET 2.0中连接字符串
即刻完成你的ASP.NET程序
asp.net连接数据库超时的解决办法
为Asp.net应用程序设置构建Web服务
asp.net怎么连接access数据库
php能和sql连接吗?
drupal7连接多个数据库问题解析
使用JAVA中的动态代理实现数据库连接池

[关闭]