*/
public static SqlType getSqlType(String sql) throws SQLException {
//#bug 2011-11-24,modify by junyu,�Ȳ����棬����sql�仯���滻�뻻��̫�࣬gc̫����
// SqlType sqlType = globalCache.getSqlType(sql);
// if (sqlType == null) {
SqlType sqlType=null;
//#bug 2011-12-8,modify by junyu ,this code use huge cpu resource,and most
//sql have no comment,so first simple look for there whether have the comment
String noCommentsSql=sql;
if(sql.contains("/*")){
noCommentsSql = StringUtils.stripComments(sql, "'\"", "'\"", true, false, true, true).trim();