Add seek method to ResultWrapper
authorTim Starling <tstarling@users.mediawiki.org>
Sun, 3 Apr 2005 07:27:25 +0000 (07:27 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Sun, 3 Apr 2005 07:27:25 +0000 (07:27 +0000)
includes/Database.php

index 7fe6ae9..fee9453 100644 (file)
@@ -1448,6 +1448,10 @@ class ResultWrapper {
                unset( $this->result );
                unset( $this->db );
        }
+
+       function seek( $row ) {
+               $this->db->dataSeek( $this->result, $row );
+       }
 }
 
 #------------------------------------------------------------------------------