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

com.github.molcikas.photon.sqlbuilders.SqlBuilderApplyOptionsService Maven / Gradle / Ivy

There is a newer version: 0.10.2
Show newest version
package com.github.molcikas.photon.sqlbuilders;

import com.github.molcikas.photon.options.PhotonOptions;

public final class SqlBuilderApplyOptionsService
{
    public static String applyPhotonOptionsToSql(String sql, PhotonOptions photonOptions)
    {
        return sql
            .replaceAll("\\[", photonOptions.getDelimitIdentifierStart())
            .replaceAll("\\]", photonOptions.getDelimitIdentifierEnd());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy