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