作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个用 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/
我有一个用 C++ 编写的 MySQL 客户端。我想启用此处所述的 MultipleStatement 选项,但当然是针对 C++: http://dev.mysql.com/doc/refman/5
我是一名优秀的程序员,十分优秀!