RELEASE_LOCK
Sintassi
RELEASE_LOCK(str)
Spiegazione
Rilascia il lock che ha per nome la stringa str, acquisito tramite GET_LOCK()
. Restituisce 1 se il lock viene rilasciato, 0 se il lock specificato non è stato acquisito dal thread corrente (nel qual caso il lock non viene rilasciato), NULL
se il lock specificato non esiste. Non esiste se non è stato creato con una chiamata a GET_LOCK()
o se è già stato rilasciato.
L'istruzione DO statement
è utile per chiamare RELEASE_LOCK()
.
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.