Exception: Mysql::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Mysql::Error
- Defined in:
- ext/mysql.c
Instance Method Summary collapse
- #errno ⇒ Object
-
#error ⇒ Object
——————————- Mysql::Error object method.
- #sqlstate ⇒ Object
Instance Method Details
#errno ⇒ Object
2051 2052 2053 2054 |
# File 'ext/mysql.c', line 2051
static VALUE error_errno(VALUE obj)
{
return rb_iv_get(obj, "errno");
}
|
#error ⇒ Object
2046 2047 2048 2049 |
# File 'ext/mysql.c', line 2046
static VALUE error_error(VALUE obj)
{
return rb_iv_get(obj, "mesg");
}
|
#sqlstate ⇒ Object
2056 2057 2058 2059 |
# File 'ext/mysql.c', line 2056
static VALUE error_sqlstate(VALUE obj)
{
return rb_iv_get(obj, "sqlstate");
}
|