TableReturnTest myTable;
select firstonly * from myTable;
/* 改行コードに変換 */
info(strfmtLB(myTable.Field1));
str testText;
TableReturnTest myTable;
/* 改行コードを\nに変換 */
testText = strReplace(StringEdit.valueStr(), num2char(10), @'\n');
info(testText);
ttsbegin;
myTable.Field1 = testText;
myTable.insert();
ttscommit;