static VALUE error_errno(VALUE obj)
{
return rb_iv_get(obj, "errno");
}
Mysql::Error object method
static VALUE error_error(VALUE obj)
{
return rb_iv_get(obj, "mesg");
}
static VALUE error_sqlstate(VALUE obj)
{
return rb_iv_get(obj, "sqlstate");
}