Help for this page

Select Code to Download


  1. or download this
    $dbh = DBI->connect('dbi:ODBC:DSN', 'user', 'password') || die ("Can't
    + connect to database : ",$DBI::errstr);
    
  2. or download this
        $sql = $dbh->prepare ("SELECT field FROM table") or die ("Unable t
    +o prepare statement: ",$DBI::errstr);
    
  3. or download this
        $sql->execute()or die ("Unable to execute get_servertime : ",$DBI:
    +:errstr);
    
  4. or download this
        @l_row = $sql->fetchrow_array;
    
  5. or download this
    $dbh->disconnect