如何使用C ++连接MySQL数据库

我正在尝试从我的网站连接数据库,并使用C

++显示一些行。因此,基本上我正在尝试制作一个从站点数据库中的表中进行选择查询的应用程序。现在,这必须可行,因为我已经看到大量的应用程序正在这样做。

我该怎么做呢?有人可以举一个例子,告诉我应该使用哪些库吗?

回答:

在这里找到:

/* Standard C++ includes */

#include <stdlib.h>

#include <iostream>

/*

Include directly the different

headers from cppconn/ and mysql_driver.h + mysql_util.h

(and mysql_connection.h). This will reduce your build time!

*/

#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(void)

{

cout << endl;

cout << "Running 'SELECT 'Hello World!' »

AS _message'..." << endl;

try {

sql::Driver *driver;

sql::Connection *con;

sql::Statement *stmt;

sql::ResultSet *res;

/* Create a connection */

driver = get_driver_instance();

con = driver->connect("tcp://127.0.0.1:3306", "root", "root");

/* Connect to the MySQL test database */

con->setSchema("test");

stmt = con->createStatement();

res = stmt->executeQuery("SELECT 'Hello World!' AS _message"); // replace with your statement

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 fata by numeric offset, 1 is the first column */

cout << res->getString(1) << endl;

}

delete res;

delete stmt;

delete con;

} catch (sql::SQLException &e) {

cout << "# ERR: SQLException in " << __FILE__;

cout << "(" << __FUNCTION__ << ") on line " »

<< __LINE__ << endl;

cout << "# ERR: " << e.what();

cout << " (MySQL error code: " << e.getErrorCode();

cout << ", SQLState: " << e.getSQLState() << " )" << endl;

}

cout << endl;

return EXIT_SUCCESS;

}

以上是 如何使用C ++连接MySQL数据库 的全部内容, 来源链接: utcz.com/qa/400610.html

回到顶部