0

有哪些解决方案可以在 C++ 中建立与 MySQL 数据库的简单连接?我发现 dev.mysql.com 的 MySQL 连接器很难集成。

期待感谢!

4

2 回答 2

2

从 C/C++ 应用程序与 MySQL 通信非常简单

你需要包含 mysql.h 头文件

连接和执行查询的三个基本 API

mysql_connect()

mysql_query()

mysql_close()

与 mysql 库 (libMysql) 链接

于 2012-07-13T07:36:13.573 回答
0

您可以尝试使用支持库的 ODBC 路径。

一年前,我使用OTL来连接 SqlServer,发现它很有效。现在我尝试连接MySql,到目前为止没有任何问题:

#include <otlv4.h>
#include <iostream>
using namespace std;

int otl_x_sql_main(int argc, char **argv)
{
    otl_connect db; // connect object
    otl_connect::otl_initialize(); // initialize ODBC environment
    try {
        db.rlogon("DRIVER=mysql;DB=...;UID=...;PWD=..."); // connect to ODBC

        // parametrized SELECT
        otl_stream i(50, "SELECT product_id,model FROM product WHERE product_id >= :f<int> AND product_id < :ff<int>", db);

        int product_id;
        char model[100];

        i << 1000 << 2000; // assigning product_id range

        // SELECT automatically executes when all input variables are assigned
        while (!i.eof()) {
            i >> product_id >> model;
            cout << "product_id=" << product_id << ", model=" << model << endl;
        }
    }
    catch(otl_exception& p) {       // intercept OTL exceptions
        cerr << p.msg << endl;      // print out error message
        cerr << p.stm_text << endl; // print out SQL that caused the error
        cerr << p.sqlstate << endl; // print out SQLSTATE message
        cerr << p.var_info << endl; // print out the variable that caused the error
    }

    return 0;
}
于 2012-07-13T08:54:52.410 回答