gpt4 book ai didi

c++ - 哪里可以找到这个函数的源代码?

转载 作者:太空宇宙 更新时间:2023-11-04 02:51:16 24 4
gpt4 key购买 nike

我正在寻找 C 函数的源代码 mysql_stmt_free_result()

我到处搜索,但没有找到源代码。我需要了解这个函数到底释放了什么。 documentation缺少有关释放的内容的信息。

最佳答案

来自 MySQL 5.6.11 的版本:

my_bool STDCALL mysql_stmt_free_result(MYSQL_STMT *stmt)
{
DBUG_ENTER("mysql_stmt_free_result");

/* Free the client side and close the server side cursor if there is one */
DBUG_RETURN(reset_stmt_handle(stmt, RESET_LONG_DATA | RESET_STORE_RESULT |
RESET_CLEAR_ERROR));
}

这里是 the MySQL development repository .

关于c++ - 哪里可以找到这个函数的源代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21968477/

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