Subject Error executing sp
Author constantijnw
Hello,

Below I've included a (stripped) sp. When it is executed by a TIB_DSQL
component the monitor shows an error:

[ 5-6-2004 11:28:36 ]
CLOSE ROW CURSOR
STMT_HANDLE = 14707356
ERRCODE = 335544569

This "dsql error" seems quit harmless, but does anybody know how to
get rid of it?


ALTER PROCEDURE "USER_SESSION_START2"
(
"ACCOUNTNAME" VARCHAR(32) CHARACTER SET UNICODE_FSS,
"USERNAME" VARCHAR(32) CHARACTER SET UNICODE_FSS,
"PASSWRD" VARCHAR(32) CHARACTER SET UNICODE_FSS
)
RETURNS
(
"ACCOUNTID" INTEGER
)
AS
BEGIN
ACCOUNTID = 0;
END