Help for this page

Select Code to Download


  1. or download this
    use DBI qw(:sql_types);
    use Data::Dumper;
    ...
    foreach (sort @{$DBI::EXPORT_TAGS{sql_types}}) {
        printf "%s=%d\n", $_, &{"DBI::$_"};
    }
    
  2. or download this
    SQL_BIT=-7
    
  3. or download this
    use DBI qw(:sql_types);
    use Data::Dumper;
    ...
    my $ref = $select_st->fetchall_arrayref();
    
    print Dumper($ref);