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 中国語 Web サイトの他の関連記事を参照してください。