gpt4 book ai didi

c++ - MySQL C++/Connector setClientOption 支持多语句

转载 作者:可可西里 更新时间:2023-11-01 07:35:18 27 4
gpt4 key购买 nike

我有一个用 C++ 编写的 MySQL 客户端。我想启用此处所述的 MultipleStatement 选项,但当然是针对 C++:

http://dev.mysql.com/doc/refman/5.0/en/c-api-multiple-queries.html

在谷歌上是不可能找到这个的。也无法找到 C++/Connector 的任何文档。这非常令人沮丧。

如果有人知道我的问题的任何解决方案或任何非常有帮助的文档页面。

谢谢

最佳答案

这对我有用:

sql::ConnectOptionsMap connection_properties;

connection_properties["hostName"]=sql::SQLString("localhost");
connection_properties["userName"]=sql::SQLString("username");
connection_properties["password"]=sql::SQLString("password");
connection_properties["CLIENT_MULTI_STATEMENTS"]=(true);

sql::Driver * driver = get_driver_instance();
std::unique_ptr<sql::Connection> con(driver->connect(connection_properties));

问候,

关于c++ - MySQL C++/Connector setClientOption 支持多语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20420116/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com