MySQL basic statement and connection string _ MySQL

Source: Internet
Author: User
Download mysqlnet.exe first, and then reference CoreLab. mySql. dll basic statement insertinto 'mis '. 'users' (name, age) values (ywm, 13) selectid, name, agefrom 'mis '. 'users' limit0, 50deletefrom 'mis '. 'users' whereid8update 'mis '. 'users' setnameywm1wh mysql string MySQL statement

Download mysqlnet.exe first, and then reference CoreLab. MySql. dll


Basic statement

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


Connection string

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 ();

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.