Exception: Mysql::Error

Inherits:
StandardError
  • Object
show all
Defined in:
ext/mysql_api/mysql.c

Instance Method Summary collapse

Instance Method Details

#errnoObject



1896
1897
1898
1899
# File 'ext/mysql_api/mysql.c', line 1896

static VALUE error_errno(VALUE obj)
{
    return rb_iv_get(obj, "errno");
}

#errorObject


Mysql::Error object method


1891
1892
1893
1894
# File 'ext/mysql_api/mysql.c', line 1891

static VALUE error_error(VALUE obj)
{
    return rb_iv_get(obj, "mesg");
}

#sqlstateObject



1901
1902
1903
1904
# File 'ext/mysql_api/mysql.c', line 1901

static VALUE error_sqlstate(VALUE obj)
{
    return rb_iv_get(obj, "sqlstate");
}