Sample Code for MySQL DriverCS to connect to MySQL

Source: Internet
Author: User

The following article describes how to use MySQL DriverCS to connect to the MySQL database. This article mainly uses the actual application code to connect MySQL DriverCS to the MySQL database, the following describes the main content of the article.

Download MySql. Data. msi

Connection code:

 
 
  1. MySQLConnection conn = new MySQLConnection(new MySQLConnectionString("192.168.0.103","jery","root","root").AsString);   
  2. DataSet ds = new DataSet();   
  3. MySQLDataAdapter ada = new MySQLDataAdapter("select * from T_User",conn);   
  4. try   
  5. {   
  6. conn.Open();   
  7. ada.Fill(ds,"jery");   
  8. conn.Close();   
  9. this.DataGrid1.DataSource = ds.Tables[0].DefaultView;   
  10. this.DataGrid1.DataBind();   
  11. }   
  12. catch(Exception ex)   
  13. {   
  14. Response.Write(ex.Message.ToString());   
  15. }  

The above content describes how to use MySQLDriverCS to connect to the MySQL database. I hope it will help you in this regard.

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.