Help for this page

Select Code to Download


  1. or download this
       $dbh->do("CREATE TEMPORARY TABLE foo (bar SMALLINT)")
       $dbh->do("INSERT INTO foo (bar) VALUES (100000000)");
    
       use Data::Dumper;
       print Dumper($dbh->selectall_arrayref("SHOW WARNINGS"));
    
  2. or download this
    $VAR1 = [
              [
    ...
                'Out of range value adjusted for column \'bar\' at row 1'
              ]
            ];