Example #1
0
 static function getDbDefaultPort($dbType)
 {
     if (Common_Install_Wizard_Utils::isMySQL($dbType)) {
         return "3306";
     }
     if (Common_Install_Wizard_Utils::isPostgres($dbType)) {
         return "5432";
     }
     if (Common_Install_Wizard_Utils::isOracle($dbType)) {
         return '1521';
     }
 }