Update
Retorna o número de linhas afetadas pela consulta.
Promise
local affectedRows = MySQL.update.await('UPDATE users SET firstname = ? WHERE identifier = ?', {
newName, identifier
})
print(affectedRows)
Aliases
MySQL.Sync.execute
exports.ghmattimysql.executeSync
exports.oxmysql.update_async
Callback
MySQL.update('UPDATE users SET firstname = ? WHERE identifier = ?', {
newName, identifier
}, function(affectedRows)
print(affectedRows)
end)
Aliases
MySQL.Async.execute
exports.ghmattimysql.execute
exports.oxmysql.update