lower, vlower

Declaration

cstring function lower(cstring S)

varchar function vlower(varchar S)

Description

Lower returns a String S converted to lower case.

Example Stored Procedure

CREATE PROCEDURE test_vlower(s varchar(30))

RETURNS (result char(30)) AS

BEGIN

result = vlower(s);

END!!

WISQL - calling the example stored procedure

execute procedure test_vlower("MER systems inc.");

RESULT

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

mer systems inc.