9 lines
139 B

  1. <?php
  2. interface iSqlResultItems
  3. {
  4. public function fetchAll();
  5. public function fetchField($field);
  6. public function fetch();
  7. }