C를 사용하여 MySQL 데이터베이스에 연결
MySQL 데이터베이스에 대한 연결을 설정하고 쿼리를 수행하기 위해 C는 포괄적인 솔루션을 제공합니다. 이 작업을 효율적으로 수행할 수 있는 방법을 살펴보겠습니다.
필수 라이브러리
필요한 라이브러리를 C 프로젝트에 통합하는 것부터 시작하세요.
예제 코드
다음 샘플 코드는 연결을 설정하는 방법을 보여줍니다. 쿼리를 실행하고 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!