. */ /** * Doctrine_Validator_Unique * * @package Doctrine * @category Object Relational Mapping * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ * @author Konsta Vesterinen */ class Doctrine_Validator_Unique { /** * @param Doctrine_Record $record * @param string $key * @param mixed $value * @param string $args * @return boolean */ public function validate(Doctrine_Record $record, $key, $value, $args) { $table = $record->getTable(); $sql = 'SELECT ' . $table->getIdentifier() . ' FROM ' . $table->getTableName() . ' WHERE ' . $key . ' = ?'; $stmt = $table->getConnection()->getDbh()->prepare($sql); $stmt->execute(array($value)); return ( ! is_array($stmt->fetch())); } }