asp.net 通用的连接数据库实例代码_实用技巧

View Code

复制代码 代码如下:

<%@ 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页面

复制代码 代码如下:

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();
        }
    }
}

本段程序的核心代码为

复制代码 代码如下:

//选择的数据库类型为“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;

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

时间: 2024-08-02 23:47:27

asp.net 通用的连接数据库实例代码_实用技巧的相关文章

asp.net 身份验证机制实例代码_实用技巧

ASP.NET提供了3种认证方式:windows身份验证.Forms验证和Passport验证. windows身份验证: IIS根据应用程序的设置执行身份验证.要使用这种验证方式,在IIS中必须禁用匿名访问. Forms验证:用Cookie来保存用户凭证,并将 未经身份验证的用户重定向到自定义的登录页. Passport验证:通过Microsoft的集中身份验证服务执行的,他为成员站点提供单独登录和核心配置文件服务. 关于这三种验证方式的配置,推荐一篇文章:http://www.jb51.ne

asp.net 无刷新分页实例代码_实用技巧

数据类代码: 复制代码 代码如下: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;using System.Collections;using System.Reflection; namespace DAL{    public  class UserManageClass    {  

ASP.Net邮箱发邮件实例代码_实用技巧

复制代码 代码如下:  public static void SendEmail()    {         System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient();        //这里使用QQ的邮箱来发送测试,如果是其它邮箱,请根据其它邮箱POP3/IMAP/SMTP服务来设置         client.Host = "smtp.qq.com";        client.UseDefaul

asp.net StringBuilder的用法 实例代码_实用技巧

要实现上述效果 复制代码 代码如下: public static string ShowNewMsg() { string Pic1 = "images/yzdp-_15.gif"; string Pic2 = "images/yzdp-_18.gif"; string Pic3 = "images/yzdp-_20.gif"; string Pic4 = "images/yzdp-_22.gif"; string Pic5

Asp.net中安全退出时清空Session或Cookie的实例代码_实用技巧

概览: 网站中点击退出,如果仅仅是重定向到登录/出页面,此时在浏览器地址栏中输入登录后的某个页面地址如主页,你会发现不用登录就能访问.这种所谓的退出并不是安全的. 那么怎样做到安全退出呢? 那就是点击退出后清空相应的Session或Cookie. 清空Session的代码: Session.Clear(); Session.Abandon(); 清除Cookie的正确代码(假设Cookie名称为UserInfo): if (Request.Cookies["UserInfo"] !=

asp.net导出EXCEL的功能代码_实用技巧

复制代码 代码如下: //由gridviw导出为Excel public static void ToExcel(System.Web.UI.Control ctl) { HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=Excel.xls"); HttpContext.Current.Response.Charset = "UTF-8

ASP.NET连接SQL数据库的简单实例代码_实用技巧

复制代码 代码如下: using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawing;using System.Web;using System.Web.SessionState;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.HTMLControls;us

asp.net实现上传文件显示本地绝对路径的实例代码_实用技巧

页面代码主要就是JSview plaincopy to clipboardprint 复制代码 代码如下: <head runat="server">     <title>无标题页</title>     <mce:script language="javascript" type="text/javascript"><!--      function Imagesrc()      { 

asp.net中gridview的查询、分页、编辑更新、删除的实例代码_实用技巧

1.A,运行效果图 1.B,源代码/App_Data/sql-basic.sql 复制代码 代码如下: use mastergoif exists(select * from sysdatabases where name='db1')begin    drop database db1endgocreate database db1gouse db1go-- ================================-- ylb:1,类别表-- =====================