asp.net C # connection to MySQL database program code

Source: Internet
Author: User
The code is as follows Copy Code

#include <stdio.h>
#include <stdlib.h>
#include <mysql/mysql.h>

int main (void)
{
const char *host = "localhost";
const char *user = "root";
const char *pass = "YourPassword";
const char *db = "MySQL";
/* Define mysql variable * *
MySQL MySQL;
Mysql_res *rs;
Mysql_row ROW;
Mysql_init (&mysql); /* Initialize * *
/* Connection Database * *
if (!mysql_real_connect (&mysql, host, user, pass, DB, 0, NULL, 0))
{
printf ("%s", Mysql_error (&mysql));
}
Get more result test
/*
Char *sql = "Select User,host from User";
if (mysql_query (&mysql, SQL)!=0)
{//Query
printf ("%s", Mysql_errno (&mysql), Mysql_error (&mysql));
}
rs = Mysql_store_result (&mysql); Get query Results
while (row = Mysql_fetch_row (RS))
{//Get each line record
printf ("%s----%SN", row[0], row[1]);
}
*/
Get one result test
Char *sql = "Select User from user where host= ' 127.0.0.1 '";
if (mysql_query (&mysql, SQL)!=0)
{//Query
1,7 Top
if (mysql_query (&mysql, SQL)!=0)
{//Query
printf ("%s", Mysql_errno (&mysql), Mysql_error (&mysql));
}
rs = Mysql_store_result (&mysql); Get query Results
Row=mysql_fetch_row (RS);
printf ("%sn", row[0]);
//*/
Mysql_free_result (RS); /* Release result set * *
Mysql_close (&mysql); /* Close Connection * *
return 1;
}
Related Article

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.