Subject How can I use variables of type ARRAY in stored procedures?
Author pepmallorca
Hello:

Can I use variables of type ARRAY in stored procedures?

I test with something like:

DECLARE VARIABLE v integer[1:10]

but It doesn't works.

I see this code in a document of Interbase.


Also works:

CREATE DOMAIN a_aaa integer[1:10]

but doesn't works:

DECLARE VARIABLE v a_aaa;


Thanks,

José,