cstr_plus_int

Declaration

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

Description

cstr_plus_int concatenates string S with integer I converted to a string

Example Stored Procedure

CREATE PROCEDURE test_cstr_plus_int(S varchar(20), I Integer)

RETURNS (result char(20)) AS

BEGIN

result = cstr_plus_int(s,I);

END!!

WISQL - calling the example stored procedure

execute procedure test_cstr_plus_int("R96-",23)

RESULT

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

R96-23