C# 動態創建SQL資料庫

来源:https://www.cnblogs.com/wangyonglai/archive/2018/12/18/10137447.html
-Advertisement-
Play Games

最近在做項目中要求能夠要求動態添加資料庫並建表。具體思路如下 1 提供數據名,根據資料庫創建資料庫 2 自定資料庫與數據表,提供數據表自定與數據類型創建表 創建sqlhelper類,用於資料庫操作 編寫調用函數 最後調用 ...


最近在做項目中要求能夠要求動態添加資料庫並建表。具體思路如下

1 提供數據名,根據資料庫創建資料庫

2 自定資料庫與數據表,提供數據表自定與數據類型創建表

 

創建sqlhelper類,用於資料庫操作

using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;

/******************************************************************* 
* Copyright (C)  版權所有
* 文件名稱:SqlHelper
* 命名空間:TestRecentMenu
* 創建時間:2018/12/18 14:26:01
* 作    者: wangyonglai
* 描    述:
* 修改記錄:
* 修改人:
* 版 本 號:v1.0.0
**********************************************************************/
namespace TestRecentMenu
{
    public static class SqlHelper
    {
        /// <summary>
        /// 使用鎖防止多線程同時操作資料庫表
        /// </summary>
        private static readonly object sqlLock = new object();

        /// <summary>
        /// SQL連接
        /// </summary>
        private static SqlConnection connection;

        private static string connStr = "server=127.0.0.1; database=; user id=sa;password=Root123";
        /// <summary>
        /// 創建SQL連接屬性
        /// </summary>
        public static SqlConnection Connection
        {
            get
            {
                try
                {
                    if (connection == null)//如果沒有創建連接,則先創建
                    {
                        //從配置文件中獲取SQL連接欄位
                        //string connStr = ConfigurationManager.ConnectionStrings["ConnetcionNmae"].ToString();

                        connection = new SqlConnection(connStr);//創建連接
                        connection.Open();//打開連接
                    }
                    else if (connection.State == ConnectionState.Broken)//如果連接中斷,則重現打開
                    {
                        connection.Close();
                        connection.Open();
                    }
                    else if (connection.State == ConnectionState.Closed)//如果關閉,則打開
                    {
                        connection.Open();
                    }
                    return connection;
                }
                catch (Exception ex)
                {
                    if (connection != null)
                    {
                        connection.Close();
                        connection.Dispose();
                    }
                    //Log4netHelper.WriteErrorLog("Connection" + ex.Message, ex);
                    return null;
                }
            }
        }

        /// <summary>
        /// 重置連接
        /// </summary>
        public static void ResetConnection()
        {
            if (connection != null)
            {
                connection.Close();
                connection.Dispose();
                connection = null;
            }
        }

        /// <summary>
        /// 獲取數據集
        /// </summary>
        /// <param name="str">執行字元串</param>
        /// <returns></returns>
        public static DataSet GetDataSet(string str)
        {
            lock (sqlLock)
            {
                try
                {
                    SqlDataAdapter sda = new SqlDataAdapter(str, Connection);
                    DataSet ds = new DataSet();
                    sda.Fill(ds);
                    return ds;
                }
                catch (Exception ex)
                {
                    ResetConnection();
                    //Log4netHelper.WriteErrorLog(str, ex);
                    return null;
                }
            }
        }

        /// <summary>
        /// 獲取數據集
        /// </summary>
        /// <param name="str"></param>
        /// <param name="values"></param>
        /// <returns></returns>
        public static DataSet GetDataSet(string str, params SqlParameter[] values)
        {
            lock (sqlLock)
            {
                try
                {
                    SqlCommand cmd = new SqlCommand();
                    cmd.Connection = Connection;
                    cmd.CommandText = str;
                    cmd.Parameters.AddRange(values);
                    SqlDataAdapter sda = new SqlDataAdapter();
                    sda.SelectCommand = cmd;
                    DataSet dt = new DataSet();
                    sda.Fill(dt);
                    return dt;
                }
                catch (Exception ex)
                {
                    ResetConnection();
                    //Log4netHelper.WriteErrorLog(str, ex);
                    return null;
                }
            }
        }

        /// <summary>
        /// 獲取表格
        /// </summary>
        /// <param name="str">執行字元串</param>
        /// <returns></returns>
        public static DataTable GetDataTable(string str)
        {
            return GetDataSet(str).Tables[0];
        }

        /// <summary>
        /// 獲取表格
        /// </summary>
        /// <param name="str">執行字元串</param>
        /// <param name="values">參數值數組</param>
        /// <returns></returns>
        public static DataTable GetDataTable(string str, params SqlParameter[] values)
        {
            return GetDataSet(str, values).Tables[0];
        }


        /// <summary>
        /// 執行SQL語句
        /// </summary>
        /// <param name="str"></param>
        public static void ExecuteNonQuery(string str)
        {
            try
            {
                SqlCommand cmd = new SqlCommand();
                cmd.Connection = Connection;
                cmd.CommandType = CommandType.Text;
                cmd.CommandText = str;
                cmd.ExecuteNonQuery();
            }
            catch
            {
 
            }
            
        }

        /// <summary>
        /// 執行sql語句
        /// </summary>
        /// <param name="str"></param>
        /// <returns></returns>
        public static bool ExecuteSql(string str)
        {
            lock (sqlLock)
            {
                SqlCommand cmd = new SqlCommand();
                cmd.Connection = Connection;
                SqlTransaction trans = Connection.BeginTransaction();
                try
                {
                    if (cmd.Connection != null && cmd.Connection.State == ConnectionState.Open)
                    {
                        cmd.Transaction = trans;
                        cmd.CommandType = CommandType.Text;
                        cmd.CommandText = str;
                        cmd.ExecuteNonQuery();
                        trans.Commit();
                        return true;
                    }
                    else
                    {
                        return false;
                    }
                }
                catch (SqlException ex)
                {
                    trans.Rollback();//事物回滾
                    //ResetConnection();
                    //Log4netHelper.WriteErrorLog(str, ex);
                    return false;
                }
            }
        }

        /// <summary>
        /// 執行sql語句
        /// </summary>
        /// <param name="str"></param>
        /// <param name="values"></param>
        /// <returns></returns>
        public static bool ExecuteSql(string str, params SqlParameter[] values)
        {
            lock (sqlLock)
            {
                SqlCommand cmd = new SqlCommand();
                cmd.Connection = Connection;
                SqlTransaction trans = Connection.BeginTransaction();
                try
                {
                    if (cmd.Connection != null && cmd.Connection.State == ConnectionState.Open)
                    {
                        cmd.Transaction = trans;
                        cmd.CommandText = str;
                        cmd.Parameters.AddRange(values);
                        cmd.ExecuteNonQuery();
                        trans.Commit();
                        return true;
                    }
                    else
                    {
                        return false;
                    }
                }
                catch (SqlException ex)
                {
                    trans.Rollback();//事物回滾
                    ResetConnection();
                    //Log4netHelper.WriteErrorLog(str, ex);
                    return false;
                }
            }
        }

    }
}

  

編寫調用函數

/// <summary>
        /// 判斷資料庫是否存在
        /// </summary>
        /// <param name="db">資料庫名稱</param>
        /// <returns></returns>
        public Boolean IsDBExist(string db)
        {
            string createDbStr = " select * from master.dbo.sysdatabases where name " + "= '" + db + "'";
            DataTable dt = SqlHelper.GetDataTable(createDbStr);
            if (dt.Rows.Count > 0)
            {
                return true;
            }
            return false;
        }

        /// <summary>
        /// 判斷資料庫中指定表格是否存在
        /// </summary>
        /// <param name="db"></param>
        /// <param name="tb"></param>
        /// <returns></returns>
        public Boolean IsTableExist(string db, string tb)
        {
            string createTbStr = "USE " + db + " select 1 from sysobjects where id =object_id('" + tb + "') and type = 'U'";
            DataTable dt = SqlHelper.GetDataTable(createTbStr);
            if (dt.Rows.Count > 0)
            {
                return true;
            }
            return false;
        }


        /// <summary>
        /// 創建資料庫
        /// </summary>
        /// <param name="db"></param>
        public void CreateDataBase(string db)
        {
            if (IsDBExist(db))
            {
                throw new Exception("資料庫已經存在!");
            }
            else//不存在則創建
            {
                string createDbStr = "Create DATABASE " + db;
                SqlHelper.ExecuteNonQuery(createDbStr);
                
            }
        }


        /// <summary>
        /// 創建資料庫表
        /// </summary>
        /// <param name="db">資料庫名</param>
        /// <param name="tb">表名</param>
        public void CreateDataTable(string db, string tb)
        {
            if (IsDBExist(db) == false)
            {
                throw new Exception("資料庫不存在!");
            }
            if (IsTableExist(db, tb))
            {
                throw new Exception("資料庫表已經存在!");
            }
            else
            {
                string content = "usseId int IDENTITY(1,1) PRIMARY KEY ,userName nvarchar(50)";
                string createTableStr = "USE " + db + " Create table " + tb + "(" + content + ")";

                SqlHelper.ExecuteNonQuery(createTableStr);
            }
        }

  最後調用

 

private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                CreateDataBase(database);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }

private void button2_Click(object sender, EventArgs e)
        {
            CreateDataTable(database, "usertb");
        }

  

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • " 【.NET Core項目實戰 統一認證平臺】開篇及目錄索引 " 上篇文章介紹了基於 客戶端授權的原理及如何實現自定義的客戶端授權,並配合網關實現了統一的授權異常返回值和許可權配置等相關功能,本篇將介紹密碼授權模式,從使用場景、源碼剖析到具體實現詳細講解密碼授權模式的相關應用。 .netcore項目 ...
  • 一、前言 這幾年前端的發展速度就像坐上了火箭,各種的框架一個接一個的出現,需要學習的東西越來越多,分工也越來越細,作為一個 .NET Web 程式猿,多瞭解瞭解行業的發展,讓自己擴展出新的技能樹,對自己的職業發展還是很有幫助的。畢竟,現在都快到9102年了,如果你還是只會 Web Form,或許還是 ...
  • 一、前言 準備寫這個系列文章的設想開始於今年9月,毫無意外,期間又又又又拖了很長時間,文章主要是為了記錄自己學習使用 ASP.NET Core Web API 與 Vue 創建一個前後端分離的項目的整個過程。嗯,2018年快要結束了,應該能在 .NET Core 3.0 正式版和 Vue 3.0 正 ...
  • 引用網址:http://support.microsoft.com/kb/182569/zh-cnInternet Explorer 安全區域設置存儲在以下註冊表子項下麵: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\In ...
  • Cenots7下安裝運行.NET Core、MicroSoft SQL Server 2019 preview 的基礎實踐 ...
  • 在Startup的ConfigureServices方法中加入需要依賴註入的東西。 每次從容器 中獲取的時候都是一個新的實例:services.AddTransient<ITransient, Transient>(); 每次從同一個容器中獲取的實例是相同的(一個請求內時同一個實例):service ...
  • .NET Core 可以以以下方式作為宿主運行: IIS 控制台 Windows服務 運行啟動代碼: public static void Main(string[] args) { try { LogCenter.Info("系統啟動"); LoadConfig(); bool isService ...
  • Application Services Application Services are used to expose domain logic to the presentation layer. An Application Service is called from the present ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...