in reply to Re: perl sql to separate and sort the column separately?
in thread perl sql to separate and sort the column separately?
$DBH = &connect or die "Cannot connect to the sql server \n";
Also note that perl4-style function calls with a & prefix are not only not required in perl5, but also circumvent prototypes and may pass @_ to the called function if () are omitted. That may introduce subtile bugs.
See also:
Alexander
|
|---|