From a6bdf19cb92c14ca95ec0eda81cc2c0c39d3d8bd Mon Sep 17 00:00:00 2001 From: zYne Date: Sun, 12 Nov 2006 22:57:18 +0000 Subject: [PATCH] fixes #229 --- lib/Doctrine/Validator/Unique.php | 36 +++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/Validator/Unique.php b/lib/Doctrine/Validator/Unique.php index 715dba77e..d7c2ad407 100644 --- a/lib/Doctrine/Validator/Unique.php +++ b/lib/Doctrine/Validator/Unique.php @@ -1,4 +1,35 @@ . + */ + +/** + * 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 @@ -9,9 +40,10 @@ class Doctrine_Validator_Unique { */ public function validate(Doctrine_Record $record, $key, $value, $args) { $table = $record->getTable(); - $sql = "SELECT id FROM ".$table->getTableName()." WHERE ".$key." = ?"; - $stmt = $table->getConnection()->getDBH()->prepare($sql); + $sql = 'SELECT ' . $table->getIdentifier() . ' FROM ' . $table->getTableName() . ' WHERE ' . $key . ' = ?'; + $stmt = $table->getConnection()->getDbh()->prepare($sql); $stmt->execute(array($value)); + return ( ! is_array($stmt->fetch())); } }