Help for this page

Select Code to Download


  1. or download this
        $dbh = DBI->connect("DBI:mysql:gmacfadd_webdb:localhost","gmacfadd
    +_webdev2","webdevpass2",
                        {PrintError => 0, RaiseError => 1});
    
  2. or download this
        #! /usr/bin/perl -wT
        package WebDB;
    ...
                {PrintError => 0, RaiseError =>1}));
        }
        1;    #return true
    
  3. or download this
        [client]
        user="gmacfadd_webdev2"
        password="webdevpass2"
    
  4. or download this
        #! /usr/bin/perl -wT
        # intro7b.cgi - use WebDB to connect
    ...
        my ($dbh, $sth, $count, $user);    # DECLARE VARIABLES
    
        $dbh = WebDB::connect_with_option_file();