J'ai une condition qui fait une requête sql pour retourner une erreur si l'utilisateur a déjà un accès dans un autre channel:
J'ai un problème pour récupérer les lindex, le putlog me retourne :
normalement $nb devrait me retourner 1 et $otherchan #test
tcl
::certUser::service:connect
set res [mysqlsel $::mysqlink "SELECT count(*),salon FROM `voiceauto` WHERE pseudo='$pseudo'" -list]
putlog "res => $res"
set nb [lindex $res 0]
putlog "nb => $nb"
set otherchan [lindex $res 1]
putlog "otherchan => $otherchan"
::certUser::service:deconnect
J'ai un problème pour récupérer les lindex, le putlog me retourne :
Citation :[06:52:03] res => {1 #test}
[06:52:03] nb => 1 #test
[06:52:03] otherchan =>
normalement $nb devrait me retourner 1 et $otherchan #test