private string LoadFromFile()
 {
     try
     {
         lock (_lock)
         {
             string path = ServerConfig.GetDBConfigPath();
             return(DBConfigUtils.GetDBConnectionString(path, SERVER_NAME));
         }
     }
     catch { }
     return(DB_CONFIG_DEFAULT);
 }