作為一個(gè)前端開(kāi)發(fā)者,我們經(jīng)常與數(shù)據(jù)庫(kù)打交道嘴秸,那么今天分享一下在Mac系統(tǒng)下如何用C#連接MySQL數(shù)據(jù)庫(kù)伺帘,首先我們得在自己的電腦上安裝一個(gè)MySQL的環(huán)境,這個(gè)請(qǐng)參考度娘则果,百度一下什么都有幔翰,當(dāng)你安裝好之后,可以在終端上檢查一下西壮,首先點(diǎn)開(kāi)的系統(tǒng)偏好設(shè)置
屏幕快照 2018-01-25 11.34.43.png
然后點(diǎn)擊MySQL遗增,開(kāi)啟服務(wù)
屏幕快照 2018-01-25 11.36.38.png
然后打開(kāi)你的終端輸入
mysql -uroot -p
然后緊接著輸入你的密碼就OK
屏幕快照 2018-01-25 11.38.24.png
如圖所示,你的數(shù)據(jù)庫(kù)就連接成功了然后我們需要?jiǎng)?chuàng)建一個(gè)新的數(shù)據(jù)庫(kù)
create database 數(shù)據(jù)庫(kù)名;
屏幕快照 2018-01-25 12.04.29.png
打開(kāi)工程做修,添加依賴
屏幕快照 2018-01-25 11.42.42.png
屏幕快照 2018-01-25 11.42.54.png
同時(shí)添加系統(tǒng)自帶的System.data
那么為了方便,我們采取面向?qū)ο蟮男问絹?lái)完成這個(gè)數(shù)據(jù)庫(kù)的操作
// DaZhan's program
using System;
using MySql.Data.MySqlClient;
using System.Collections;
using System.Configuration;
using System.Data;
namespace MysqlDemo
{
// 為了我們使用的方便我將此類設(shè)置為靜態(tài)類
static class MysqlTool
{
private static MySqlConnection con;
private static MySqlCommand com;
//1、連接數(shù)據(jù)庫(kù)
public static void ConnectMysql (string sql) {
con = new MySqlConnection (sql);
try {
Console.WriteLine ("連接成功");
com = new MySqlCommand ();
com.Connection = con;
} catch (Exception ex) {
Console.WriteLine (ex);
}
}
// 操作數(shù)據(jù)庫(kù)(增刪改)
public static void OperatorMysql (string sql) {
com.CommandText = sql;
if (com.ExecuteNonQuery () > 0) {
Console.WriteLine ("操作成功");
}
}
// 讀
public static void ReadMysql (string sql) {
com.CommandText = sql;
MySqlDataReader read = com.ExecuteReader ();
while (read.Read ()) {
if (read.HasRows) {
Console.WriteLine (read.GetString (0) +", "+read.GetString (1));
}
}
}
//打開(kāi)數(shù)據(jù)庫(kù)
public static void OpenMysql () {
con.Open ();
}
//關(guān)閉數(shù)據(jù)庫(kù)
public static void CloseMysql () {
con.Close ();
}
}
class MainClass {
public static void Main (string[] args) {
// 連接數(shù)據(jù)庫(kù)
MysqlTool.ConnectMysql ("server=localhost;User Id=root;password=111111;Database=Student");
MysqlTool.OpenMysql ();
// 創(chuàng)建一個(gè)表
MysqlTool.OperatorMysql ("create table if not exists student (number int,age int)");
// 插入一個(gè)數(shù)據(jù)
MysqlTool.OperatorMysql ("insert into student values(1,18)");
MysqlTool.OperatorMysql ("insert into student values(2,19)");
MysqlTool.OperatorMysql ("insert into student values(3,20)");
// 讀取數(shù)據(jù)
MysqlTool.ReadMysql ("select * from student");
MysqlTool.CloseMysql ();
}
}
}
其實(shí)對(duì)于數(shù)據(jù)庫(kù)的操作我們還是要熟悉sql語(yǔ)句就ok了饰及,下面是我給大家整理的一些經(jīng)常會(huì)用到的語(yǔ)句
1蔗坯、連接數(shù)據(jù)庫(kù)的命令
mysql -uroot -p
2、創(chuàng)建數(shù)據(jù)庫(kù)
create database 數(shù)據(jù)庫(kù)名;
3燎含、顯示所有的數(shù)據(jù)庫(kù)
show databases;
4宾濒、顯示單個(gè)的數(shù)據(jù)庫(kù)
show create database 數(shù)據(jù)庫(kù)名;
5瘫镇、選擇數(shù)據(jù)庫(kù)
use 數(shù)據(jù)庫(kù)名;
6鼎兽、查看當(dāng)前數(shù)據(jù)庫(kù)
select database();
7铣除、刪除數(shù)據(jù)庫(kù)
drop database if exists 數(shù)據(jù)庫(kù)名谚咬;
8、創(chuàng)建表(要先選擇數(shù)據(jù)庫(kù)use)
create table 表名(id int,name varchar(30),birthday date,resume text);
9尚粘、查看所有的表
show tables;
10择卦、查看表的結(jié)構(gòu)
desc 表名;
11郎嫁、新增列
alter table 表名 add(age date);
12秉继、修改某列數(shù)據(jù)類型
alter table 表名 modify name varchar(20);
13、刪除某一列
alter table 表名 drop 列名泽铛;
14尚辑、修改某一列的名稱
alter table 表名 change name drees char(3);
15、修改表名
rename table 舊的表名 to 新的表名;
create table classes(id int,name varchar(30),english int,chines int,math int);
注意:改名字的左邊單引號(hào)
insert into classes values(1,'a',2,3,4);
insert into classes values(2,'b',5,6,7);
insert into classes values(3,'c',12,3,14);
insert into classes values(4,'d',25,26,27);
聚合函數(shù)對(duì)一組值執(zhí)行計(jì)算并返回單一的值盔腔,除了count之外杠茬,聚合函數(shù)忽略空值。聚合函數(shù)經(jīng)常與select語(yǔ)句的group by 子句 一同使用
count
16弛随、count列名 返回某一列瓢喉,行的總數(shù)
select count(列名)from 表名;
select count(列名)from 表名 where 列名>20;
select count(列名)from 表名 where 列名+列名+列名>20;
sum(只對(duì)數(shù)字起作用)
select sum(列名)from 表名;
select sum(列名)+sum(列名)as 總分 from stu;
AVG(返回值滿足where條件的一列的平均值)
select avg(列名)from 表名;
MIN MAX
select max(列名)from 表名;
Order by 排序查詢結(jié)果
select name,列名from 表名 order by 列名(和前面的列名一樣);
還是那句話舀透,如有雷同栓票,你就是抄我的!?????? --大展
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者