> 데이터 베이스 > MySQL 튜토리얼 > C를 사용하여 MySQL 데이터베이스에 연결하는 방법은 무엇입니까?

C를 사용하여 MySQL 데이터베이스에 연결하는 방법은 무엇입니까?

Mary-Kate Olsen
풀어 주다: 2024-10-30 21:55:30
원래의
744명이 탐색했습니다.

How to Connect to a MySQL Database Using C  ?

C를 사용하여 MySQL 데이터베이스에 연결

MySQL 데이터베이스에 대한 연결을 설정하고 쿼리를 수행하기 위해 C는 포괄적인 솔루션을 제공합니다. 이 작업을 효율적으로 수행할 수 있는 방법을 살펴보겠습니다.

필수 라이브러리

필요한 라이브러리를 C 프로젝트에 통합하는 것부터 시작하세요.

  • mysql_connection.h: 기본 연결 인터페이스 제공
  • cppconn/driver.h: MySQL 드라이버와의 상호 작용을 촉진
  • cppconn/ 예외.h: 데이터베이스 작업 중에 발생할 수 있는 예외 처리를 활성화합니다
  • cppconn/resultset.h: 결과 검색 및 반복을 허용합니다
  • cppconn/statement.h: SQL 문 생성 및 실행 가능

예제 코드

다음 샘플 코드는 연결을 설정하는 방법을 보여줍니다. 쿼리를 실행하고 MySQL 데이터베이스에서 결과를 검색합니다.

<code class="c++">#include <stdlib.h>
#include <iostream>

#include "mysql_connection.h"

#include <cppconn/driver.h>
#include <cppconn/exception.h>
#include <cppconn/resultset.h>
#include <cppconn/statement.h>

using namespace std;

int main() {
  try {
    // Create the necessary objects
    sql::Driver *driver;
    sql::Connection *con;
    sql::Statement *stmt;
    sql::ResultSet *res;

    // Establish a connection
    driver = get_driver_instance();
    con = driver->connect("tcp://127.0.0.1:3306", "root", "root");

    // Set the default schema
    con->setSchema("test");

    // Create a statement object
    stmt = con->createStatement();

    // Execute a query
    res = stmt->executeQuery("SELECT 'Hello World!' AS _message"); // Replace with your statement

    // Iterate over the results
    while (res->next()) {
      cout << "\t... MySQL replies: ";
      // Access column data by alias or column name
      cout << res->getString("_message") << endl;
      cout << "\t... MySQL says it again: ";
      // Access column data by numeric offset (1-based)
      cout << res->getString(1) << endl;
    }

    // Clean up resources
    delete res;
    delete stmt;
    delete con;
  } catch (sql::SQLException &e) {
    // Handle exceptions
    cout << "# ERR: SQLException in " << __FILE__ << " (" << __FUNCTION__ << ") on line " << __LINE__ << endl;
    cout << "# ERR: " << e.what() << " (MySQL error code: " << e.getErrorCode() << ", SQLState: " << e.getSQLState() << " )" << endl;
  }

  return EXIT_SUCCESS;
}</code>
로그인 후 복사

결론

단계를 따르고 제공된 코드 예제를 통합하면 성공적으로 연결할 수 있습니다. C에서 MySQL 데이터베이스를 만들고, 쿼리를 실행하고, 원하는 결과를 검색하세요. 이를 통해 강력하고 효율적인 데이터베이스 기반 애플리케이션을 개발할 수 있습니다.

위 내용은 C를 사용하여 MySQL 데이터베이스에 연결하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿