org.smart.data.repository.util.QueryCleaner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smart-data-repository Show documentation
Show all versions of smart-data-repository Show documentation
ORM that simplifies database interactions.
package org.smart.data.repository.util;
/**
* @author Ranzy Blessings (2017/06/05)
*/
public class QueryCleaner {
public static String INSERT_QUERY_CLEANER(String dirtyQuery) {
return dirtyQuery.replace("[", "(").replace("]", ")");
}
public static String SELECT_UPDATE_QUERY_CLEANER(String query) {
return query.replace("[", "").replace("]", "");
}
}