Help for this page

Select Code to Download


  1. or download this
    sub importPublisher {
        my $file = shift();
    ...
        my $time_run = time() - $time_started;
        Log( sprintf "\tThe import took %02d:%02d:%02d HH:MM:SS",int($time
    +_run/3600),int($time_run/60) % 60, $time_run % 60);
    }
    
  2. or download this
    CREATE PROCEDURE InsertPublisherDetails(
        @publishername NAME,
    ...
    
        RETURN @@identity
    END