Java String Substritute substituteMarkers(String sql, String marker, Object substitution)

Here you can find the source of substituteMarkers(String sql, String marker, Object substitution)

Description

substitute Markers

License

Open Source License

Declaration

public static String substituteMarkers(String sql, String marker, Object substitution) 

Method Source Code

//package com.java2s;
/*//from  w w  w .j  a va2 s .c om
 * (c) Copyright 2010-2011 by Volker Bergmann. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, is permitted under the terms of the
 * GNU General Public License (GPL).
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * WITHOUT A WARRANTY OF ANY KIND. ALL EXPRESS OR IMPLIED CONDITIONS,
 * REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE
 * HEREBY EXCLUDED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

public class Main {
    public static String substituteMarkers(String sql, String marker, Object substitution) {
        return sql.replace(marker, renderValue(substitution));
    }

    public static String renderValue(Object value) {
        if (value instanceof String || value instanceof Character)
            return "'" + value + "'";
        else
            return String.valueOf(value);
    }
}

Related

  1. substituteCommandLine(String[] parsedCommandLine, String file1Name, String file2Name, String display1, String display2)
  2. substituteEnvironmentVariables(String str, String prefix, String suffix)
  3. substituteHex(String aString)
  4. substituteInvalidChars(String str)
  5. substituteJobID(String path)
  6. substituteNull(String value, String substitution)
  7. substitutePropertyWithIn(String propertyName, String replacementString, String evaluatedString)
  8. substituteSelectedCharacters(String text, boolean skip)
  9. substituteSpaces(String originalPath)