Method: Mysql#dump_debug_info
- Defined in:
- ext/mysql_api/mysql.c
#dump_debug_info ⇒ Object
dump_debug_info()
507 508 509 510 511 512 513 |
# File 'ext/mysql_api/mysql.c', line 507
static VALUE dump_debug_info(VALUE obj)
{
MYSQL* m = GetHandler(obj);
if (mysql_dump_debug_info(m) != 0)
mysql_raise(m);
return obj;
}
|