Help for this page

Select Code to Download


  1. or download this
        package MyApp::Database;
        use vars qw( $ERROR );
    ...
            # return sucess
            $self;
        }
    
  2. or download this
        use MyApp::Database;
    
        # first use - database gets initialised
        my $database = MyApp::Database->instance();
        die $MyApp::Database::ERROR unless defined $database;