mysql c connector_mysql c connector 多条sql语句执行示例

//  假设参数 sql已经包含多条sql语句。如 sql = "insert into table1(...) values(...); update table2 set a=1;";

const bool CDBOperator::MultiQuery(const std::string sql, std::string& error)

{

int res = 0;

bool ret = false;

MYSQL_RES* result = NULL;

std::string e;

try

{

//disable autocommit

if(!AutoCommit(AUTOCOMMIT_DISABLE, error))

{

return false;

}

res = mysql_real_query(m_mysql, sql.c_str(), sql.length());

// if query fail

if(0 != res)

{

error = mysql_error(m_mysql);

Rollback(e);

AutoCommit(AUTOCOMMIT_ENABLE, e);

return false;

}

do

{

/* did current statement return data? */

result = mysql_store_result(m_mysql);

if (result) {

mysql_free_result(result);

} else { /* no result set or error */

if (mysql_field_count(m_mysql) == 0) {

printf("%lld rows affected\n",

mysql_affected_rows(m_mysql));

} else { /* some error occurred */

printf("Could not retrieve result set\n");

break;

}

}

/* more results? -1 = no, >0 = error, 0 = yes (keep looping) */

if ((res = mysql_next_result(m_mysql)) > 0)

printf("Could not execute statement\n");

} while (res == 0);

ret = Commit(error);

AutoCommit(AUTOCOMMIT_ENABLE, e);

if(!ret)

{

return false;

}

return true;

}

catch(...)

{

error = mysql_error(m_mysql);

return false;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值