DELIMITER $$
--
-- Procedimientos
--
CREATE DEFINER=`cbtis18`@`localhost` PROCEDURE `acceso`(in loginusu varchar(45),in passwd varchar(15),out res varchar(250))
begin
if(select count(*) from usuarios where nom_usu=loginusu and pwd_usu=passwd)=0 then
set res="Error login o password incorrectos";
else
set res="Bienvenido";
end if;
end$$
Hi, if you believe that the problem can only be resolved from the command line then you can install latest version of 'xampp' on your local computer and then import the database to your locally hosted database server, repair it there and then import it back to your server. That will be the simplest solution that I see.