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

com.vaadin.v7.data.util.sqlcontainer.SQLUtil Maven / Gradle / Ivy

There is a newer version: 8.27.3
Show newest version
/*
 * Copyright (C) 2000-2024 Vaadin Ltd
 *
 * This program is available under Vaadin Commercial License and Service Terms.
 *
 * See  for the full
 * license.
 */
package com.vaadin.v7.data.util.sqlcontainer;

import java.io.Serializable;

/**
 * @deprecated As of 8.0, no replacement available.
 */
@Deprecated
public class SQLUtil implements Serializable {
    /**
     * Escapes different special characters in strings that are passed to SQL.
     * Replaces the following:
     *
     * 
    *
  • ' is replaced with ''
  • *
  • \x00 is removed
  • *
  • \ is replaced with \\
  • *
  • " is replaced with \"
  • *
  • \x1a is removed
  • *
* * Also note! The escaping done here may or may not be enough to prevent any * and all SQL injections so it is recommended to check user input before * giving it to the SQLContainer/TableQuery. * * @param constant * @return \\\'\' */ public static String escapeSQL(String constant) { if (constant == null) { return null; } String fixedConstant = constant; fixedConstant = fixedConstant.replaceAll("\\\\x00", ""); fixedConstant = fixedConstant.replaceAll("\\\\x1a", ""); fixedConstant = fixedConstant.replaceAll("'", "''"); fixedConstant = fixedConstant.replaceAll("\\\\", "\\\\\\\\"); fixedConstant = fixedConstant.replaceAll("\\\"", "\\\\\""); return fixedConstant; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy