Method: Mysql#commit
- Defined in:
- ext/mysql_api/mysql.c
#commit ⇒ Object
commit()
808 809 810 811 812 813 814 |
# File 'ext/mysql_api/mysql.c', line 808
static VALUE commit(VALUE obj)
{
MYSQL* m = GetHandler(obj);
if (mysql_commit(m) != 0)
mysql_raise(m);
return obj;
}
|