public void UpdateMeasurementDatabaseData(string server, string database, string uid, string password)
 {
     Connection = new MysqlConnection(server, database, uid, password);
     createPlcDataPackageTableIfNotExists();
 }
 public MeasurementDatabase()
 {
     Connection = new MysqlConnection();
 }