Home > Database > Mysql Tutorial > body text

How to Connect to a MySQL Database from Your C Application?

Barbara Streisand
Release: 2024-10-26 13:47:30
Original
191 people have browsed it

How to Connect to a MySQL Database from Your C   Application?

How to Connect MySQL Database Using C

Connecting to a MySQL database from a C application allows you to perform database operations, such as executing SQL queries. Here's a guide on how to do it:

Prerequisites:

  • Install the MySQL Connector/C libraries.

Steps:

  1. Include Necessary Headers:

    <code class="cpp">#include <cppconn/driver.h>
    #include <cppconn/exception.h>
    #include <cppconn/resultset.h>
    #include <cppconn/statement.h></code>
    Copy after login
  2. Create a Connection:

    <code class="cpp">sql::Driver *driver = get_driver_instance();
    sql::Connection *con = driver->connect("tcp://127.0.0.1:3306", "root", "root");</code>
    Copy after login
  3. Set the Database:

    <code class="cpp">con->setSchema("your_database_name");</code>
    Copy after login
  4. Create a Statement and Query:

    <code class="cpp">sql::Statement *stmt = con->createStatement();
    sql::ResultSet *res = stmt->executeQuery("your_sql_query");</code>
    Copy after login
  5. Iterate Over Results:

    <code class="cpp">while (res->next()) {
      cout << res->getString("column_name") << endl;
    }
    Copy after login

Here's an example that demonstrates how to execute a simple "Hello World!" query:

<code class="cpp">int main() {
  sql::Connection *con;
  sql::Statement *stmt;
  sql::ResultSet *res;

  try {
    con = get_driver_instance()->connect(
        "tcp://127.0.0.1:3306", "user", "password");
    con->setSchema("test");

    stmt = con->createStatement();
    res = stmt->executeQuery("SELECT 'Hello World!' AS _message");

    while (res->next()) {
      cout << "MySQL replies: " << res->getString("_message") << endl;
    }
  } catch (sql::SQLException &amp;e) {
    cout << "MySQL error code: " << e.getErrorCode() << endl;
  }

  return 0;
}</code>
Copy after login

By following these steps, you can connect to a MySQL database and execute SQL queries using C .

The above is the detailed content of How to Connect to a MySQL Database from Your C Application?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!