Subject | password required in exception message |
---|---|
Author | Stefan Sinne |
Post date | 2007-03-01T10:52:22Z |
Hello.
I have created a simple procedure just raising an exception.
-----
SET TERM ^ ;
CREATE PROCEDURE PRUEBA
AS
begin
exception ex_prueba; /* = 'test message' */
suspend;
end^
SET TERM ; ^
GRANT EXECUTE ON PROCEDURE PRUEBA TO "PUBLIC";
-----
On FB2.0 / Linux the result of a call to this procedure is
'test message
password required'
Running the same procedure on FB1.5 / Windows the result is just
'test message'
What is the meaning of the 'password required' phrase?
Thanks,
Stefan
I have created a simple procedure just raising an exception.
-----
SET TERM ^ ;
CREATE PROCEDURE PRUEBA
AS
begin
exception ex_prueba; /* = 'test message' */
suspend;
end^
SET TERM ; ^
GRANT EXECUTE ON PROCEDURE PRUEBA TO "PUBLIC";
-----
On FB2.0 / Linux the result of a call to this procedure is
'test message
password required'
Running the same procedure on FB1.5 / Windows the result is just
'test message'
What is the meaning of the 'password required' phrase?
Thanks,
Stefan