Beispiel #1
0
 /// <summary>
 /// Creates the standard EVE database schema with the name specified in the experiment settings.
 /// </summary>
 public void CreateDbSchema()
 {
     _log.ConnectToServerAndCreateSchema(_dbSettings);
     _log.LogExperiment(_launchManager.ExperimentName);
     _launchManager.SessionId = _log.CurrentSessionId;
     _launchManager.LoadSettingsIntoDatabase();
     CheckDatabase();
 }
Beispiel #2
0
 public void ResetDatabase()
 {
     _log.ConnectToServerAndCreateSchema(_launchManager.ExperimentSettings.DatabaseSettings);
     _log.LogExperiment(_launchManager.ExperimentName);
     _launchManager.SessionId = _log.CurrentSessionId;
     _launchManager.LoadSettingsIntoDatabase();
     _launchManager.MenuManager.InstantiateAndShowMenu("Database Configuration Menu", "Launcher");
 }