Method: Mysql::Result#free
- Defined in:
- ext/mysql_api/mysql.c
#free ⇒ Object
free()
1110 1111 1112 1113 1114 1115 1116 1117 1118 |
# File 'ext/mysql_api/mysql.c', line 1110
static VALUE res_free(VALUE obj)
{
struct mysql_res* resp = DATA_PTR(obj);
check_free(obj);
mysql_free_result(resp->res);
resp->freed = Qtrue;
store_result_count--;
return Qnil;
}
|