/framework/core/db/DbResultSet.php

http://zoop.googlecode.com/ · PHP · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · a4e09228c6d0f6df9c8bd2f0d26df5ca MD5 · raw file

  1. <?php
  2. class DbResultSet
  3. {
  4. protected $res;
  5. protected $link;
  6. function __construct($link, $res)
  7. {
  8. $this->link = $link;
  9. $this->res = $res;
  10. }
  11. }