All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.odysz.semantic.util.SQLString Maven / Gradle / Ivy

package io.odysz.semantic.util;

public class SQLString {

	public static String formatSql(String s) {
		if (s != null) {
			String s1 = s.replace("\n", "\\n");
			String s2 = s1.replace("\t", "\\t");
			String s3 = s2.replace("'", "''");
			return s3;
		}
		return "";
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy