日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

云服务器上mysql数据库环境安装配置

發布時間:2023/12/18 数据库 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 云服务器上mysql数据库环境安装配置 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1.訪問云服務器:云服務器端需在防火墻設置中添加mysql協議規則(放開端口默認為3306)。 2.訪問云服務器:修改云服務器數據庫訪問權限

3.c#連接實例

try{DataTable dt = new DataTable();string ConnectionStr = "server=" + "xxx.xxx.xxx.xxx" + ";User ID=root;Password=123456;database=mydatabase;Allow User Variables=True;SslMode=none;";MySqlConnection conn = new MySqlConnection(ConnectionStr);conn.Open();string sSQL = "select *from mytable2";MySqlCommand cmd = new MySqlCommand(sSQL, conn);MySqlDataReader dr = cmd.ExecuteReader();if (dr.HasRows){//讀取MySqlDataReader里的內容 dt.Load(dr);}//關閉對象和連接 dr.Close();this.dataGridView1.DataSource = dt;}catch(Exception ee){}

4.my.ini文件實例

# For advice on how to change settings please see #?http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html # *** DO NOT EDIT THIS FILE. It's a template which will be copied to the # *** default location during install, and will be replaced if you # *** upgrade to a newer version of MySQL. [mysql] # 設置mysql客戶端默認字符集 default-character-set=utf8 [mysqld]# Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. # innodb_buffer_pool_size = 128M# Remove leading # to turn on a very important data integrity option: logging # changes to the binary log between backups. # log_bin# These are commonly set, remove the # and set as required. basedir =C:\mysql-5.6.40-winx64 datadir = C:\mysql-5.6.40-winx64\data port = 3306 # server_id = .....# Remove leading # to set options mainly useful for reporting servers. # The server defaults are faster for transactions and fast SELECTs. # Adjust sizes as needed, experiment to find the optimal values. # join_buffer_size = 128M # sort_buffer_size = 2M # read_rnd_buffer_size = 2M sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

總結

以上是生活随笔為你收集整理的云服务器上mysql数据库环境安装配置的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。