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

Merge branch 'F8806SQLFunctionNl2br' into 'master'

F8806 Implement SQL Stored Procedure 'qnl2br()'.

See merge request !171
parents 978c1fad 3c66da7a
No related branches found
No related tags found
1 merge request!171F8806 Implement SQL Stored Procedure 'qnl2br()'.
Pipeline #2142 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