Class SQLUtil
- java.lang.Object
-
- com.vaadin.data.util.sqlcontainer.SQLUtil
-
- All Implemented Interfaces:
Serializable
public class SQLUtil extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SQLUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StringescapeSQL(String constant)Escapes different special characters in strings that are passed to SQL.
-
-
-
Method Detail
-
escapeSQL
public static String escapeSQL(String constant)
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
- Parameters:
constant-- Returns:
- \\\'\'
-
-