Help for this page

Select Code to Download


  1. or download this
    package App::Queries;
    use base 'Exporter';
    ...
            source => q( SELECT [% var $extract %], bpID FROM invBpT; ),
        }
    );
    
  2. or download this
    package App;
    
    ...
    my $complex_query = get_query( 'get_blueprintTypeID', $input );
    
    print "$simple_query\n$complex_query";
    
  3. or download this
    SELECT typeID FROM typeAM;
    SELECT productTypeID, bpID FROM invBpT;
    
  4. or download this
    package SQL::Template;
    use 5.010;
    ...
    }
    
    1;