cstradd, vcharadd

Declaration

cstring function cstradd(cstring S, cstring S1 )

varchar function vcharadd(varchar S, varchar S1 )

Description

cstradd, vcharadd concatenate string S and S1 into one string and return it.

Example Stored Procedure

CREATE PROCEDURE test_vcharadd(s varchar(30), s2 varchar(30))

RETURNS (result varchar(60)) AS

BEGIN

result = vcharadd(s,s2);

END!!

WISQL - calling the example stored procedure

execute procedure test_vcharadd("this"," and that");

RESULT

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

this and that