Java String Quote quoteSqlIdentifier(String name)

Here you can find the source of quoteSqlIdentifier(String name)

Description

quote Sql Identifier

License

Open Source License

Declaration

public static String quoteSqlIdentifier(String name) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static String quoteSqlIdentifier(String name) {
        return "`" + name + "`";
    }/*from  www  .j  av  a2  s  . c  om*/
}

Related

  1. QuoteSingle(String S)
  2. quoteSpecial(String orig)
  3. quoteSpecialCharacters(final String oldString)
  4. quoteSQL(String string)
  5. quoteSqlIdentifier(String identifier)
  6. quoteSQLString(String s)
  7. quoteStr(Object o)
  8. quoteStrictOccurrences(final String textToMarkup, final String filter)
  9. quoteString(final String input)