Connecting to the Database
The very first database operation you must do!
Use the DBI->connect()method
For example
        $dbh = DBI->connect( ‘dbi:Oracle:DEV’,
                          ‘user’, ‘pass’ );
That is, we minimally specify the Data Source
Name of the database, a username and password
If successful, this will return a valid database
handle