home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Web Server / PHP.EXE / pear / DB / tests / mysql / 001.phpt next >
Encoding:
Text File  |  2000-12-13  |  311 b   |  18 lines

  1. --TEST--
  2. DB_mysql::connect test
  3. --SKIPIF--
  4. <?php require "skipif.inc"; ?>
  5. --FILE--
  6. <?php
  7. require "connect.inc";
  8. if (is_object($dbh)) {
  9.     print "\$dbh is an object\n";
  10. }
  11. if (is_resource($dbh->connection)) {
  12.     print "\$dbh is connected\n";
  13. }
  14. ?>
  15. --EXPECT--
  16. $dbh is an object
  17. $dbh is connected
  18.