Subject | I'm having an issue with comments in my Stored Procedures. |
---|---|
Author | jonathanfabricioseibel |
Post date | 2013-07-25T17:12:17Z |
I'm having an issue with comments in my Stored Procedures.
Procedure Script:
Create Procedure Test
Returns (
R_ERROR integer)
As
Begin
R_ERROR = 0; /* Comment Test */
-- Comment Test
Suspend;
End
I'm using IBO Components to run this script into a Firebird DataBase, but when i open this procedure with IBExpert the comments have disappeared.
I noticed that when i run the script with a TIBOQuery (using ExecSql) the comments disappear, but when i run with a TIB_Script (using Execute) the comments still there.
Am i doing something wrong or is it suppose to be that way?
Procedure Script:
Create Procedure Test
Returns (
R_ERROR integer)
As
Begin
R_ERROR = 0; /* Comment Test */
-- Comment Test
Suspend;
End
I'm using IBO Components to run this script into a Firebird DataBase, but when i open this procedure with IBExpert the comments have disappeared.
I noticed that when i run the script with a TIBOQuery (using ExecSql) the comments disappear, but when i run with a TIB_Script (using Execute) the comments still there.
Am i doing something wrong or is it suppose to be that way?