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