public static object ExecuteSqlGet(string dbKey, string SQLString, string content) { MyDbConnection2 conn = null; try { conn = DbHelperMySQL3.PopDBConnection(dbKey); if (null == conn) { return(conn.ExecuteSqlGet(SQLString, content)); } } finally { DbHelperMySQL3.PushDBConnection(conn); } return(null); }