Source for file Klass.php
Documentation is available at Klass.php
* Model for handling queries with database table 'klass'.
* @author Margus Sellin <margus@bitweb.ee>
* @copyright Copyright (C) 2011. All rights reserved. Margus Sellin
* Database query that fetches a row from 'klass' table where
* column 'number' equals the given parameter.
* @param string $nr Class number
* @return mixed $result Query resultset
$select =
$this->select();
->where('number = ?', $nr);
$result =
$this->fetchRow($select);
Documentation generated on Mon, 20 Jun 2011 05:43:05 +0300 by phpDocumentor 1.4.1