/framework/core/db/DbResultSet.php
http://zoop.googlecode.com/ · PHP · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · a4e09228c6d0f6df9c8bd2f0d26df5ca MD5 · raw file
- <?php
- class DbResultSet
- {
- protected $res;
- protected $link;
-
- function __construct($link, $res)
- {
- $this->link = $link;
- $this->res = $res;
- }
- }