zoukankan      html  css  js  c++  java
  • Connection对象

    方法一:
    连接当前目录的一个Access数据库看文件,利用Connection对象打开一个数据库连接,然后利用State属性将状态显示到浏览器上。
    using System.Data.OleDb;

    protected
     void Page_Load(object sender, EventArgs e)
        {
            OleDbConnection conn 
    = new OleDbConnection();
            conn.ConnectionString 
    = "Provider=Microsoft.Jet.OLEDB.4.0;" +
                
    "Data Source=" + Server.MapPath("person.mdb");
            conn.Open();
            Message.Text 
    = conn.State.ToString();
            conn.Close();
        }

    <form id="form1" runat="server">
        
    <div>
            
    <asp:Label ID="Message" runat="server" Width="288px"></asp:Label>&nbsp;</div>
    </form>

    方法二:
    可以通过Connection对象的构造函数传入连接串
    using System.Data.OleDb;

    protected
     void Page_Load(object sender, EventArgs e)
        {
            OleDbConnection conn 
    = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;" +
                
    "Data Source=" + Server.MapPath("person.mdb"));
            conn.Open();
            Message.Text 
    = conn.State.ToString();
            conn.Close();
        }

    <form id="form1" runat="server">
        
    <div>
            
    <asp:Label ID="Message" runat="server" Width="288px"></asp:Label>&nbsp;</div>
    </form>

    方法三:
    连接SQL Server数据库,只需修改命名空间
    using System.Data.SqlClient;

    protected void Page_Load(object sender, EventArgs e)
        {
            SqlConnection conn 
    = new SqlConnection();
            conn.ConnectionString 
    = "server=localhost;database=pubs;uid=sa;pwd=''";
            conn.Open();
            Message.Text 
    = conn.State.ToString();
            conn.Close();
        }

    <form id="form1" runat="server">
        
    <div>
            
    <asp:Label ID="Message" runat="server" Width="288px"></asp:Label>&nbsp;</div>
    </form>
  • 相关阅读:
    iOS图片压缩上传
    Spring MVC获得HttpServletRequest
    BZOJ 1002 FJOI2007 轮状病毒 递推+高精度
    破解2559
    Redis源代码分析(十七)--- multi事务操作
    Android setTag()与getTag(),与set多个setTag()
    【NOI2015】【程序自己主动分析】【并查集+离散化】
    BZOJ1433 [ZJOI2009]假期的宿舍
    将參数从PHP传递到JavaScript中
    NUTCH2.3 hadoop2.7.1 hbase1.0.1.1 solr5.2.1部署(二)
  • 原文地址:https://www.cnblogs.com/qixin622/p/755749.html
Copyright © 2011-2022 走看看