Row Delimiters
Generally, external files are more useful if rows are separated by a delimiter, in the form of a “newline” sequence that is recognised by reader applications on the intended platform.For most contexts on Windows, it is the two-byte 'CRLF' sequence, carriage return (ASCII code decimal 13) and line feed (ASCII code decimal 10).On POSIX, LF on its own is usual.There are various ways to populate this delimiter column.In our example below, it is done by using a BEFORE INSERT
trigger and the internal function ASCII_CHAR
.