|
|
|
|
@ -223,6 +223,8 @@ public class MessageInterfaceController extends AbstractController {
|
|
|
|
|
String replacedArgValue = "";
|
|
|
|
|
//탭문자 치환
|
|
|
|
|
replacedArgValue = argValue.replaceAll("\t", " ");
|
|
|
|
|
//역슬래시문자 치환
|
|
|
|
|
replacedArgValue = replacedArgValue.replace("\\", "\\\\");
|
|
|
|
|
//개행문자 치환
|
|
|
|
|
if(databaseId.equals("mariadb") || databaseId.equals("mysql")){
|
|
|
|
|
replacedArgValue = forJsonText.replaceLineChangeForNuri2Maria(replacedArgValue);
|
|
|
|
|
@ -254,6 +256,8 @@ public class MessageInterfaceController extends AbstractController {
|
|
|
|
|
|
|
|
|
|
//탭문자 치환
|
|
|
|
|
replacedArgValue = argValue.replaceAll("\t", " ");
|
|
|
|
|
//역슬래시문자 치환
|
|
|
|
|
replacedArgValue = replacedArgValue.replace("\\", "\\\\");
|
|
|
|
|
//개행문자 치환
|
|
|
|
|
if(databaseId.equals("mariadb") || databaseId.equals("mysql")){
|
|
|
|
|
replacedArgValue = forJsonText.replaceLineChangeForNuri2Maria(replacedArgValue);
|
|
|
|
|
|