comment je dois faire l'appel de cette procedure de athentification
et ce que ce code est true
*********create procedure authentification(in @username varchar(120),in @password varchar(120)
begin
if
textbox1.text="" and textbox2.text="" then
msgbox("vous devez identifier",ms...)
else
if exist
(select nomuser,modpass from utilisateur
where
nomuser=@username and
modpass=@password)
then message 'ok'
return 1000
else
message 'notok'
return 4000
end if
end if
end*********