当前位置:Gxlcms > mysql > MySQL基本语句和连接字符串_MySQL

MySQL基本语句和连接字符串_MySQL

时间:2021-07-01 10:21:17 帮助过:29人阅读

mysql字符串MySQL语句

需要先下载mysqlnet.exe,安装后引用CoreLab.MySql.dll


基本语句

insert into `mis`.`users` ( name, age) values ( "ywm", 13)

select id, name, age from `mis`.`users` limit 0, 50

delete from `mis`.`users` where id > 8

update `mis`.`users` set name = "ywm1" where id = 13


连接字符串

MySqlConnection conn = new MySqlConnection("User Id=root;Password=sa;Host=localhost;Database=mis;");
conn.Open();
MySqlDataAdapter da = new MySqlDataAdapter("select id, name, age from `mis`.`users` ",conn);
DataSet ds = new DataSet();
da.Fill(ds,"users");
conn.Close();
DataGrid1.DataSource= ds;
DataGrid1.DataBind();

人气教程排行