Skip to content
Snippets Groups Projects
Commit 3c66da7a authored by Carsten  Rose's avatar Carsten Rose
Browse files

F8806 Implement SQL Stored Procedure 'qnl2br()'.

parent 978c1fad
No related branches found
No related tags found
1 merge request!171F8806 Implement SQL Stored Procedure 'qnl2br()'.
Pipeline #2141 passed
......@@ -49,4 +49,20 @@ BEGIN
DECLARE output TEXT;
SET output = REPLACE(input, '|', '\\|');
RETURN output;
END;
\ No newline at end of file
END;
###
#
# QNL2BR(input)
# replaces '|' in `input` with '\|'
#
DROP FUNCTION IF EXISTS QNL2BR;
CREATE FUNCTION QNL2BR ( input TEXT )
RETURNS TEXT
DETERMINISTIC
BEGIN
DECLARE output TEXT;
SET output = REPLACE( REPLACE(input, CHAR(13), ''), CHAR(10), '<br>');
RETURN output;
END
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment