从 C 应用程序连接到 MySQL 数据库允许您执行数据库操作,例如执行 SQL 查询。以下是如何操作的指南:
先决条件:
步骤:
包含必要的标头:
<code class="cpp">#include <cppconn/driver.h> #include <cppconn/exception.h> #include <cppconn/resultset.h> #include <cppconn/statement.h></code>
创建连接:
<code class="cpp">sql::Driver *driver = get_driver_instance(); sql::Connection *con = driver->connect("tcp://127.0.0.1:3306", "root", "root");</code>
设置数据库:
<code class="cpp">con->setSchema("your_database_name");</code>
创建语句和查询:
<code class="cpp">sql::Statement *stmt = con->createStatement(); sql::ResultSet *res = stmt->executeQuery("your_sql_query");</code>
迭代结果:
<code class="cpp">while (res->next()) { cout << res->getString("column_name") << endl; }
这是一个示例演示如何执行简单的“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 &e) { cout << "MySQL error code: " << e.getErrorCode() << endl; } return 0; }</code>
按照以下步骤,您可以连接到 MySQL 数据库并使用 C 执行 SQL 查询。
以上是如何从 C 应用程序连接到 MySQL 数据库?的详细内容。更多信息请关注PHP中文网其他相关文章!