Help for this page

Select Code to Download


  1. or download this
    use DBIx::Abstract;
    
    ...
       $dbx->ensure_connection;
       ## do the query;
    }
    
  2. or download this
    $dbh = DBI->connect(...);
    
    ...
    
       ## do query.
    }