透過資料庫介面庫(如 MySQL Connector/C 或 ODBC),可將 C 中的 cin 與資料庫結合。具體步驟包括:安裝資料庫介面庫;建立資料庫連線;建立查詢語句;將 cin 輸入綁定到查詢參數;執行查詢;取得查詢結果。
C 中cin 和資料庫的結合
在C 使用cin 從命令列讀取使用者輸入,而資料庫用於儲存和管理資料。要將 cin 與資料庫結合起來,需要使用資料庫介面庫(例如 MySQL Connector/C 或 ODBC)。
使用 MySQL Connector/C
在 C 程式碼中包含必要的頭檔。
<code class="cpp">#include <iostream> #include <mysqlx/xdevapi.h></code>
建立資料庫連線。
<code class="cpp">mysqlx::Session session("host", "port", "user", "password", "database");</code>
建立查詢語句。
<code class="cpp">std::string query = "SELECT * FROM table_name WHERE column_name = ?";</code>
將 cin 輸入綁定到查詢參數。
<code class="cpp">mysqlx::PreparedStatement stmt = session.prepare(query); std::string input; std::cin >> input; stmt.bind("column_name", input);</code>
執行查詢。
<code class="cpp">mysqlx::Result res = stmt.execute();</code>
取得查詢結果。
<code class="cpp">for (auto row : res.fetchAll()) { std::cout << row[0].get<std::string>() << std::endl; }</code>
使用 ODBC
#包含必要的 ODBC 頭檔。
<code class="cpp">#include <iostream> #include <sql.h> #include <sqlext.h></code>
建立資料庫連線。
<code class="cpp">SQLHENV henv; SQLHDBC hdbc; SQLAllocEnv(&henv); SQLAllocConnect(henv, &hdbc); SQLDriverConnect(hdbc, nullptr, "DSN", SQL_NTS, nullptr, 0, nullptr, SQL_DRIVER_NOPROMPT);</code>
建立 SQL 語句句柄。
<code class="cpp">SQLHSTMT hstmt; SQLAllocStmt(hdbc, &hstmt);</code>
設定 SQL 語句。
<code class="cpp">std::string sql = "SELECT * FROM table_name WHERE column_name = ?"; SQLBindParameter(hstmt, 1, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, 0, 0, nullptr, 0, nullptr);</code>
將 cin 輸入綁定到 SQL 語句。
<code class="cpp">std::string input; std::cin >> input; SQLSetParam(hstmt, 1, SQL_C_CHAR, input.c_str(), input.length(), nullptr);</code>
執行 SQL 語句。
<code class="cpp">SQLExecute(hstmt);</code>
取得查詢結果。
<code class="cpp">SQLBindCol(hstmt, 1, SQL_C_CHAR, nullptr, 0, nullptr); while (SQLFetch(hstmt) == SQL_SUCCESS) { char buffer[1024]; SQLGetData(hstmt, 1, SQL_C_CHAR, buffer, sizeof(buffer), nullptr); std::cout << buffer << std::endl; }</code>
以上是c++中cin和資料庫怎麼結合的詳細內容。更多資訊請關注PHP中文網其他相關文章!