Hi All,
I'm new to stored procedures in Informix, but I've written one that does the job I need it to do...except one thing.
When the stored proc returns values, it doesn't assign a name to the values it returns. The stored proc I'm talking about returns multiple values (for the purposes of this thread, lets just say they're "CustomerID" and "OrderID") and, when I run it in dbaccess, it just outputs:
I need to somehow label the return values so that it will show
Please help folks, I'm nearly there!
I'm new to stored procedures in Informix, but I've written one that does the job I need it to do...except one thing.
When the stored proc returns values, it doesn't assign a name to the values it returns. The stored proc I'm talking about returns multiple values (for the purposes of this thread, lets just say they're "CustomerID" and "OrderID") and, when I run it in dbaccess, it just outputs:
Code:
(expression) ABBE03
(expression) 928378
I need to somehow label the return values so that it will show
Code:
CustomerID ABBE03
OrderID 928378
Please help folks, I'm nearly there!