Help for this page

Select Code to Download


  1. or download this
    # Prepare your statement at the start of your program
    my $ST = $DB->prepare(q{
    ...
          $file_weather_type 
       );
    }
    
  2. or download this
    while (....) {
       # Then for each reading, get the values
    ...
       # and write them to the table
       $ST->execute(@data_fields);
    }