Method: Mysql::Stmt#sqlstate
- Defined in:
- ext/mysql.c
#sqlstate ⇒ Object
sqlstate()
1786 1787 1788 1789 1790 |
# File 'ext/mysql.c', line 1786 static VALUE stmt_sqlstate(VALUE obj) { struct mysql_stmt* s = DATA_PTR(obj); return rb_enc_tainted_str_new2(mysql_stmt_sqlstate(s->stmt)); } |