PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [WB22] - Scheduled Task with a Stored Procedure
[WB22] - Scheduled Task with a Stored Procedure
Iniciado por guest, 17,jul. 2017 23:49 - 2 respuestas
Publicado el 17,julio 2017 - 23:49
Good afternoon
I want to do a Scheduled Task with a Stored Procedure in WebDev 22, I have a small test project, where I created a stored procedure with only the following code:

----------------------------------------------------------

USUARIOS.USU_NOMBRE = "David Cabrera"
USUARIOS.USU_FECHAINGRESO = SysDateTime()

Hadd(USUARIOS)

----------------------------------------------------------

In the HFSQL Control Center I created a scheduled task with the procedure I have in my project, I using a data base in my localhost. I try to run the process directly from the HFSQL control center,But I get an error:

The HFSQL "USUARIOS.USU_NOMBRE" item is unknown.

How can I fix this error?, Maybe it's simple, but I don't understand it

Thanks in advance
David Cabrera
Publicado el 18,julio 2017 - 08:30
Hi David,

in a stored procedure the files are not known while you are not connected with the database. So you have to declare each used file before use:

HDeclareExternal("USUARIOS.fic","USUARIOS")
Publicado el 18,julio 2017 - 16:10
Hi Stefan,

Thanks for your answer, I needed exactly what you said, I had seen the function, but I was confused with the archive path, but with the pure name .fic works perfectly.

Thank you.