# INSERT RECORD INTO MET_OFFICE_RAW_DATA TABLE no warnings 'uninitialized'; my $mo_raw_sql = "REPLACE INTO met_office_raw_data SET observation_datetime_utc = '$file_obs_datetime_utc', observation_datetime_local = '$file_obs_datetime_local', observation_datetime = '$file_obs_datetime', station_id = '$file_station_id', station_name = '$file_station_name', temp_c = '$file_temp_c', dewpoint_c = '$file_dewpoint_c', humidity_rh = '$file_humidity_rh', wind_dir_compass = '$file_wind_dir_compass', wind_speed_mph = '$file_wind_speed_mph', wind_gust_mph = '$file_wind_gust_mph', visibility_metres = '$file_visibility_metres', pressure_hpa = '$file_pressure_hpa', pressure_tendency = '$file_pressure_tendency', weather_type = '$file_weather_type'"; my $mo_raw = $dbh->do($mo_raw_sql, undef) or die "Could not Insert record into met_office_raw_data \n";