Do you know if there is a transaction control inside oRs:Save()?
If there is, is possible disable it ?
Do you know if there is a transaction control inside oRs:Save()?
If there is, is possible disable it ?
if set autocommit=0;
//oserver:query("set autocommit=0")
oserver:query(" start transaction")
... update/sve/insert/delete sql
if ... error
oserver:query("rollback")
else
oserver:query("commit")
end
//
if set autocommit=1;
... single sql include commit /rollback