主頁 > 知識庫 > .net連接Mysql封裝類代碼 可直接調(diào)用

.net連接Mysql封裝類代碼 可直接調(diào)用

熱門標(biāo)簽:手機地圖標(biāo)注如何刪除 外呼系統(tǒng)代理品牌 世紀(jì)佳緣地圖標(biāo)注怎么去掉 巫師3為什么地圖標(biāo)注的財寶沒有 辦理400電話證件 十堰正規(guī)電銷機器人系統(tǒng) 寧波自動外呼系統(tǒng)代理 怎么給超市做地圖標(biāo)注入駐店 外呼系統(tǒng)費用一年
微軟的visual studio沒有自帶連接Mysql的驅(qū)動,要去網(wǎng)上下載一個mysql-connector-net-6.4.3驅(qū)動,然后安裝就可以使用。
下面是我封裝好的連接數(shù)據(jù)庫的類,直接調(diào)用即可。
復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using MySql.Data.MySqlClient;
namespace DAL
{
  public class GetConnection
    {
        private static MySqlConnection  _connection;
      /// summary>
      /// 獲取數(shù)據(jù)庫連接橋
      /// /summary>
        private static MySqlConnection Connection
        {
            get
            {
               //string connectionString = ConfigurationManager.AppSettings["ConnectionString"];
                string connectionString = "server=localhost;user id=root; password=root; database=system; pooling=false";
                //server=222.222.222.222;port=3306;uid=user;pwd=;database=basename;遠(yuǎn)程連接的
                //string connectionString = "Data Source=202.192.72.22;Initial Catalog=wwj;Persist Security Info=True;User ID=wwj;Password=wwj123";
                if (_connection == null)
                {
                    _connection = new MySqlConnection(connectionString);
                    _connection.Open();
                }
                if (_connection.State == ConnectionState.Closed)
                {
                    _connection.Open();
                }
                if (_connection.State == ConnectionState.Broken)
                {
                    _connection.Close();
                    _connection.Open();
                }
                return GetConnection._connection;
            }
        }
      /// summary>
      /// 獲取表數(shù)據(jù)
      /// /summary>
      /// param name="sql">/param>
      /// returns>/returns>
        public static MySqlDataReader GetDataRead(string sql)
        {
            MySqlCommand command = new MySqlCommand(sql, Connection);
            MySqlDataReader read = command.ExecuteReader();
            return read;
        }
        public static int NoSelect(string sql)
        {
            MySqlCommand command = new MySqlCommand(sql, Connection);
            int row = command.ExecuteNonQuery();
            return row;
        }
        public static DataTable GetDataTable(string sql)
        {
            MySqlCommand command = new MySqlCommand(sql, Connection);
            DataTable dt = new DataTable();
            MySqlDataAdapter sda = new MySqlDataAdapter(command);
            sda.Fill(dt);
            return dt;
        }
        /// summary>
        /// 執(zhí)行sql語句,返回一行一列。。
        /// /summary>
        /// param name="sql">SQL語句/param>
        /// returns>/returns>
        public static string GetScalar(string sql)
        {
            MySqlCommand command = new MySqlCommand(sql, Connection);
            return command.ExecuteScalar().ToString();
        }
    }
}

比如說你想執(zhí)行刪除的,你可以調(diào)用GetConnection.NoSelect("delete from UserInfo where Id=1");讀數(shù)據(jù)庫的某一張表,可以調(diào)用GetConnection.GetDataTable("select * from UserInfo");調(diào)用都很方便。
您可能感興趣的文章:
  • php封裝的mysqli類完整實例
  • php mysql 封裝類實例代碼
  • php封裝的連接Mysql類及用法分析
  • Python訪問MySQL封裝的常用類實例
  • 一個ASP.NET的MYSQL的數(shù)據(jù)庫操作類自己封裝的
  • php實現(xiàn)mysql封裝類示例
  • php中mysql模塊部分功能的簡單封裝
  • PHP訪問MYSQL數(shù)據(jù)庫封裝類(附函數(shù)說明)
  • dmysql自己封裝的mysql庫
  • 詳解MySQL的簡易封裝以及使用

標(biāo)簽:通遼 嘉興 泰州 天門 牡丹江 景德鎮(zhèn) 山西

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《.net連接Mysql封裝類代碼 可直接調(diào)用》,本文關(guān)鍵詞  .net,連接,Mysql,封裝,類,代碼,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《.net連接Mysql封裝類代碼 可直接調(diào)用》相關(guān)的同類信息!
  • 本頁收集關(guān)于.net連接Mysql封裝類代碼 可直接調(diào)用的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章