• C#控制台连接Mysql数据库,有配置数据库连接字符串的配置文件


    C#控制台连接Mysql数据库,有配置数据库连接字符串的配置文件

    实现功能

    1. 读取..txt 中的配置文件,来初始化连接字符串
    2. 让连接字符串的配置文件不存在会主动创建默认的连接字符串

    注意点:

    1. 需要引用Newtonsoft
    2. 使用mysql

    代码如下

    using System;
    using MySql.Data.MySqlClient;
    using Newtonsoft.Json;
    
    
    namespace 连接数据库
    {
        class Program
        {
            static void Main(string[] args)
            {
                string filePath = AppDomain.CurrentDomain.BaseDirectory + "ConnectionStrConfig.txt";//设置文件路径
                if (!System.IO.File.Exists(filePath))//判断文件是否存在
                {
                    Console.WriteLine("文件不存在!已创建新的文件,请重启程序");
                    System.IO.File.CreateText(filePath);//创建文件
                    System.IO.File.WriteAllText(filePath, CreateDefaultConnectionString());//写入文件内容,默认的数据库配置文件
                    return;//程序退出
                }
    
                string configFile = System.IO.File.ReadAllText(filePath);//读取文件内容
                if (configFile.Length == 0)//文件内容是空的
                {
                    Console.WriteLine("没有读取到内容");
                    System.IO.File.WriteAllText(filePath, CreateDefaultConnectionString());//写入文件内容,默认的数据库配置文件
                    return;
                }
    
                Console.WriteLine(configFile);
                ConnectionStrConfig connectionStrConfig;
                try
                {
                    connectionStrConfig = JsonConvert.DeserializeObject(configFile);//将读取到的内容转成配置文件的对象
                }
                catch (Exception e)
                {
                    Console.WriteLine("Josn 序列化失败,检查配置文件");//转换失败
                    Console.ReadKey();
                    return;
                }
    
                if (connectionStrConfig.Database == null)
                {
                    Console.WriteLine("Josn 序列化失败,检查配置文件");//转换失败
                    return;
                }
    
    
                // 与数据库连接的信息
                MySqlConnectionStringBuilder builder = new MySqlConnectionStringBuilder();
                //用户名
                builder.UserID = connectionStrConfig.UserID;
                //密码
                builder.Password = connectionStrConfig.Password;
                //服务器地址
                builder.Server = connectionStrConfig.Server;
                //连接时的数据库
                builder.Database = connectionStrConfig.Database;
                //设置端口号
                builder.Port = connectionStrConfig.Port;
                //定义与数据连接的链接
                MySqlConnection connection = new MySqlConnection(builder.ConnectionString);
                //打开这个链接
                connection.Open();
                //connection.OpenAsync();
    
                Console.WriteLine("这是一个控制台程序");
                Console.WriteLine("这是一个控制台程序,数据库连接完成");
    
                Console.ReadKey();
                connection.Close();//数据库连接关闭
                //connection.CloseAsync();
    
                Console.WriteLine("数据库连接断开");
                Console.ReadKey();
    
            }
    
    
            /// 
            /// 创建默认的连接字符串
            /// 
            /// 默认的配置文件的string
            static string CreateDefaultConnectionString()
            {
                string defaultString = "";//默认连接字符串的配置文件
                ConnectionStrConfig connectionStrConfig = new ConnectionStrConfig("root", "root", "localhost", "testdatabase", 3308);//通过”构造函数“ 创建默认的连接字符串的配置文件
                defaultString = JsonConvert.SerializeObject(connectionStrConfig);//Json序列化为string
                return defaultString;
            }
    
        }
    
    
        [Serializable]
        class ConnectionStrConfig
        {
            private string userid;
            private string password;
            private string server;
            private string database;
            private uint port;
    
    
            /// 
            /// 用户名
            /// 
            public string UserID
            {
                get
                {
                    return userid;
                }
                private set
                {
                    userid = value;
                }
            }
    
            /// 
            /// 密码
            /// 
            public string Password
            {
                get
                {
                    return password;
                }
                private set
                {
                    password = value;
                }
            }
    
            /// 
            /// 服务地址
            /// 
            public string Server
            {
                get
                {
                    return server;
                }
                private set
                {
                    server = value;
                }
            }
    
            /// 
            /// 数据库名称
            /// 
            public string Database
            {
                get
                {
                    return database;
                }
                private set
                {
                    database = value;
                }
            }
    
            /// 
            /// 端口号
            /// 
            public uint Port
            {
                get
                {
                    return port;
                }
                private set
                {
                    port = value;
                }
            }
    
    
            /// 
            /// 数据库连接字符串的配置文件
            /// 
            /// 用户名
            /// 密码
            /// 服务
            /// 数据库名称
            /// 端口号
            public ConnectionStrConfig(string userid
            , string password,
            string server,
            string database,
            uint port)
            {
                this.userid = userid;
                this.password = password;
                this.server = server;
                this.database = database;
                this.port = port;
            }
    
    
            //public ConnectionStrConfig()
            //{
            当反序列化对象的时候,被反序列化的对象如果有get或者set修饰的属性,那么就不可以显式的写无参的构造函数。
            //}
    
    
        }
    
    
    }
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
  • 相关阅读:
    22年11月-外包-第四轮面试题
    华为OD机试 - 最大括号深度 - 栈stack(Java 2023 B卷 100分)
    MySQL约束constraint
    《代号:魂之刃2》- 身处黑暗的勇者游戏
    一篇文章掌握整个JVM,JVM超详细解析!!!
    JAVA8新特性
    基于python的驾校管理系统的设计与实现
    【ES6】js中的__proto__和prototype
    2022年QT初体验以及未来趋势发展以及前景概要
    数据库系统原理与应用教程(070)—— MySQL 练习题:操作题 101-109(十四):查询条件练习
  • 原文地址:https://blog.csdn.net/GoodCooking/article/details/132629483