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

org.smart.data.repository.util.QueryCleaner Maven / Gradle / Ivy

There is a newer version: 4.0.14-RELEASE
Show newest version
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("]", "");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy