• 数据库通用连接类


    using System;
    using System.Data ;
    using System.Data.SqlClient ;
    using System.Data.SqlTypes ;
    using System.Windows.Forms ;
    using System.Collections;
    namespace Database
    {
     
    /// <summary>
     
    /// Database 的摘要说明。
     
    /// </summary>

     public class Database
     
    {
      
    /// <summary>
      
    /// 属性
      
    /// </summary>

    //  public DataSet dataSet
    //  {
    //   get
    //   {
    //    return m_DataSet;
    //   }
    //   
    //  }
      public Database()
      
    {
       
    //
       
    // TODO: 在此处添加构造函数逻辑
       
    //
       XmlRead ConStr=new XmlRead();
       
    if (ConStr.ReadAllConnectNode())
       
    {
        constr
    = ConStr.connstring ;
    //    try
    //    {
    //     
    //     Open();
    //    }
    //    catch(Exception Ex)
    //    {
    //     MessageBox.Show("数据库连接错误"+Ex.ToString () );
    //    
    //    }
        
       }

       
    else
       
    {
       constr
    ="-1";
       
    //throw new SqlErrorCollection();

       }

       

      }

    //  public bool Open()
    //  {
    //   
    //   mcn.ConnectionString = constr;
    //   try
    //   {
    //    mcn.Open();
    //    
    //   }
    //   catch( Exception)
    //   {
    //    return  false;
    //   }
    //   return true;
    //  }
      /// <summary>
      
    /// 默认获取DataSet
      
    /// </summary>
      
    /// <param name="pMyTableName"></param>
      
    /// <param name="tmpMyComputerName"></param>
      
    /// <returns></returns>

    //  public virtual int getData (string pMyTableName ,string tmpMyComputerName)
    //  {
    //   return -1;
    //
    //  }
      ExecuteNonQuery
      
    ExecuteReader

      
    private函数
      
    填充DataSet

     
    internal  string constr= null;//= "Uid =sa ;Pwd=sa ;Server = Drago;Database =Northwind";
     internal SqlConnection mcn = new SqlConnection();
     
    internal DataSet m_DataSet =new System.Data.DataSet() ;
     }

     
    }


  • 相关阅读:
    批量清理harbor镜像
    常用的git命令
    Gentoo网络管理方法总结
    Pelican主题配置:elegant
    Pelican搭建静态博客
    UNIX基础--安装应用程序: Packages 和 Ports
    UNIX基础--Manual Pages
    UNIX基础--Shells
    UNIX基础--进程和守护进程
    UNIX基础--磁盘组织
  • 原文地址:https://www.cnblogs.com/5tao/p/443727.html
Copyright © 2020-2023  润新知