class Mysql::Error

Public Instance Methods

errno() click to toggle source
static VALUE error_errno(VALUE obj)
{
    return rb_iv_get(obj, "errno");
}
error() click to toggle source

Mysql::Error object method
static VALUE error_error(VALUE obj)
{
    return rb_iv_get(obj, "mesg");
}
sqlstate() click to toggle source
static VALUE error_sqlstate(VALUE obj)
{
    return rb_iv_get(obj, "sqlstate");
}