Help for this page

Select Code to Download


  1. or download this
    -- SQL Code created by Class::DBI
    declare @P1 int
    ...
    WHERE  shipcountry = @P1
    ', 1
    select @P1
    
  2. or download this
    #
    # Northwind DBI Class
    ...
    
    1;
    
  3. or download this
    #
    # Testing Northwind database access
    ...
    foreach my $Order ( @Orders ){
        print "$Order->ShipCity\n";
    }