Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^2: Handle MySQL BIT data type in Perl

by pg (Canon)
on Nov 01, 2005 at 05:00 UTC ( [id://504499]=note: print w/replies, xml ) Need Help??

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);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://504499]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (2)
As of 2024-03-19 06:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found