Here you can find the source of quoteSqlIdentifier(String name)
public static String quoteSqlIdentifier(String name)
//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*/ }