Help for this page

Select Code to Download


  1. or download this
    $api_results = [
       [ "id1", "app_slug1", "app_name_1", "provider_id_1", ..etc.. ],
    ...
          .   .   .   .   .   .   .   .   .   .   .   .   .   .   .
       [ "idN", "app_slugN", "app_name_N", "provider_id_N", ..etc.. ]
    ];
    
  2. or download this
    # Prepare a handle to an insert statement:
    $app_insert = $dbh->prepare("INSERT .....blah, blah");
    ...
        $app_insert->execute(@$row);
    }
    print "Done inserting\n";