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
1870 1871 1872 1873 |
# File 'ext/mysql.c', line 1870
static VALUE error_errno(VALUE obj)
{
return rb_iv_get(obj, "errno");
}
|
#error ⇒ Object
1865 1866 1867 1868 |
# File 'ext/mysql.c', line 1865
static VALUE error_error(VALUE obj)
{
return rb_iv_get(obj, "mesg");
}
|
#sqlstate ⇒ Object
1875 1876 1877 1878 |
# File 'ext/mysql.c', line 1875
static VALUE error_sqlstate(VALUE obj)
{
return rb_iv_get(obj, "sqlstate");
}
|