int_plus_cstr

Declaration

cstring* function int_plus_cstr(cstring* S, Integer* I)

Description

int_plus_cstr converts integer I to a string and appends string s to it.

Example Stored Procedure

CREATE PROCEDURE test_int_plus_cstr(S char(20), I Integer)

RETURNS (result char(20)) AS

BEGIN

result = int_plus_cstr(S,I);

END!!

WISQL - calling the example stored procedure

execute procedure test_int_plus_cstr("-R96",23)

RESULT

====================

23-R96