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

时间:2014-02-23 12:54:10

标签: c++ mysql c

我希望找到C函数mysql_stmt_free_result()

的源代码

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

1 个答案:

答案 0 :(得分:2)

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