1422: Komit eksplisit atau implisit tidak diperbolehkan dalam fungsi atau pemicu tersimpan
create procedure test( a int )
MODIFIES SQL DATA
BEGIN
START TRANSACTION ;
update t set col='some value' where id=a ;
COMMIT ;
END //
The Digital Envious Emu