通过数据库接口库(如 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中文网其他相关文章!