Help for this page

Select Code to Download


  1. or download this
    SELECT phone FROM user WHERE user_name < 'Fred';
    
  2. or download this
    my $var = SELECT phone FROM user WHERE user_name < 'Fred';
    
  3. or download this
     use DBI;
     my $dbh = DBI->connect('dbi:DBM:ext=.db'); 
    ...
         $sth->dump_results if $sth->{NUM_OF_FIELDS};
     }
     $dbh->disconnect;