日期:2014-05-16 浏览次数:20498 次
private static boolean isMySQL(Connection conn) throws Exception { if (-1 == conn.getMetaData().getURL().toLowerCase().indexOf("mysql")) { return false; } return true; }