home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / php / pear / DB / tests / simplequery.inc < prev    next >
Text File  |  2000-12-06  |  135b  |  8 lines

  1. <?php
  2.  
  3. $dbh->setErrorHandling(PEAR_ERROR_DIE);
  4. $sth = $dbh->simpleQuery("SELECT * FROM phptest");
  5. print gettype($sth)."\n";
  6.  
  7. ?>
  8.