Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl
    use warnings;
    ...
    ABCconf::Query();
    print "-" x 60, "\n";
    ABCconf::Insert();
    
  2. or download this
    D:\>perl testBug.pl
    Query called from main
    ...
    New called: ABCconf::Query
    New called: ABCconf::Query=HASH(0x226290)
    Attempt to bless into a reference at testBug.pl line 24.
    
  3. or download this
    #! /usr/bin/perl
    use warnings;
    ...
    ABCconf::Query();
    print "-" x 60, "\n";
    ABCconf::Insert();
    
  4. or download this
    D:\>perl testBug.pl
    Query called from main
    ...
    ------------------------------------------------------------
    Insert called
    New called: ABCconf::Query
    
  5. or download this
    D:\>perl -v
    This is perl, v5.8.8 built for MSWin32-x86-multi-thread
    ...
    Binary build 822 [280952] provided by ActiveState http://www.ActiveSta
    +te.com
    Built Jul 31 2007 19:34:48
    ...