Method: Mysql2::Client#ping
- Defined in:
- ext/mysql2/client.c
#ping ⇒ Object
509 510 511 512 513 514 515 516 517 518 519 |
# File 'ext/mysql2/client.c', line 509
static VALUE rb_mysql_client_ping(VALUE self) {
unsigned long retVal;
GET_CLIENT(self);
retVal = mysql_ping(wrapper->client);
if (retVal == 0) {
return Qtrue;
} else {
return Qfalse;
}
}
|