O
==== github.com/progorker =_============ _ __ _ _ ___ __ _ ___ _ _| |_____ _ _ | '_ \ '_/ _ \/ _` / _ \ '_| / / -_) '_| | .__/_| \___/\__, \___/_| |_\_\___|_| =|_|===========|___/====================== API References of myTestor ----- oOo ----- [function] api_testor_escape ========================================== -------|__/------------------------- SYNTAX ------------------------------------ function api_testor_escape ( p_input longtext ) returns longtext -------|__/------------------------- USAGE ------------------------------------ $) set @v_input = '{\"n\": 2}'; set @v_output = api_testor_escape( @v_input ); select @v_input as `input`, @v_output as `output`; ---------------------------- +----------+--------------------+ | input | output | +----------+--------------------+ | {"n": 2} | {__dq__n__dq__: 2} | +----------+--------------------+ ----------------------------