Help for this page

Select Code to Download


  1. or download this
    my $sql_query = "SELECT * FROM export";
    
    ...
        RaiseError => 1,
    }
    );
    
  2. or download this
    my $sth = $dbh->prepare($sql_query);
    $sth->execute();
    
  3. or download this
    $dbh = DBI->connect ("dbi:CSV:f_dir:/root", undef, undef, {
            f_ext      => ".csv/r",
    ...
    
    my $sth = $dbh->prepare($sql_query);
    $sth->execute();
    
  4. or download this
    my $sql_query = "SELECT * FROM export";
    my $sth = $dbh->prepare($sql_query);
    $sth->execute();
    
  5. or download this
    my $sth = $dbh->prepare ("SELECT * from export");
    $sth->execute();
    
  6. or download this
    $sth->finish();
    $dbh->disconnect();
    
  7. or download this
    my $dbh = DBI->connect ("dbi:CSV:f_dir:/root", undef, undef, {
        f_ext      => ".csv",
        RaiseError => 1,
    }
    );