public static function processSchemaMatchingUserInputsStoreDB($sid, $schemaMatchingUserInputs)
 {
     $spd = $schemaMatchingUserInputs["spd"];
     $drd = $schemaMatchingUserInputs["drd"];
     $start = $schemaMatchingUserInputs["start"];
     $end = $schemaMatchingUserInputs["end"];
     $location = $schemaMatchingUserInputs["location"];
     $aggrtype = $schemaMatchingUserInputs["aggrtype"];
     if ($spd != "" && $spd != "other") {
         UtilsForWizard::processOneColumn($sid, $spd, "Spd", "date", "yyyy/mm/dd", "source publication date", null);
     } else {
         $value = $schemaMatchingUserInputs["spd2"];
         UtilsForWizard::processOneConstantColumn($sid, "Spd", "date", "yyyy/mm/dd", "source publication date", $value);
     }
     if ($drd != "" && $drd != "other") {
         UtilsForWizard::processOneColumn($sid, $drd, "Drd", "date", "yyyy/mm/dd", "date record date", null);
     } else {
         $value = $schemaMatchingUserInputs["drd2"];
         UtilsForWizard::processOneConstantColumn($sid, "Drd", "date", "yyyy/mm/dd", "date record date", $value);
     }
     if ($start != "" && $start != "other") {
         UtilsForWizard::processOneColumn($sid, $start, "Start", "date", "yyyy/mm/dd", "start time of the data", null);
     } else {
         $value = $_POST["schemaMatchingUserInputs"]["start2"];
         UtilsForWizard::processOneConstantColumn($sid, "Start", "date", "yyyy/mm/dd", "start time of the data", $value);
     }
     if ($end != "" && $end != "other") {
         UtilsForWizard::processOneColumn($sid, $end, "End", "date", "yyyy/mm/dd", "end time of the data", null);
     } else {
         $value = $schemaMatchingUserInputs["end2"];
         UtilsForWizard::processOneConstantColumn($sid, "End", "date", "yyyy/mm/dd", "end time of the data", $value);
     }
     if ($location != "" && $location != "other") {
         UtilsForWizard::processOneColumn($sid, $location, "Location", "String", "", "location of the event", null);
     } else {
         $value = $schemaMatchingUserInputs["location2"];
         UtilsForWizard::processOneConstantColumn($sid, "Location", "String", "", "location of the event", $value);
     }
     if ($aggrtype != "" && $aggrtype != "other") {
         UtilsForWizard::processOneColumn($sid, $aggrtype, "Aggrtype", "String", "", "Type of aggregation appplied to values", null);
     } else {
         $value = $schemaMatchingUserInputs["aggrtype2"];
         UtilsForWizard::processOneConstantColumn($sid, "Aggrtype", "String", "", "Type of aggregation appplied to values", $value);
     }
 }