Index: temp/trunk/data/lib/slib.php
===================================================================
--- temp/trunk/data/lib/slib.php	(revision 9416)
+++ temp/trunk/data/lib/slib.php	(revision 9417)
@@ -101,4 +101,5 @@
 		list($db_type) = split(":", $dsn);
 		
+		// ¥«¥é¥à¥ê¥¹¥È¤ò¼èÆÀ
 		$arrRet = sfGetColumnList($table_name, $objQuery, $db_type);
 		if(count($arrRet) > 0) {
@@ -107,32 +108,4 @@
 			}
 		}
-
-		/*
-		// postgresql¤Èmysql¤È¤Ç½èÍý¤òÊ¬¤±¤ë
-		if ($db_type == "pgsql") {
-			$sql = "SELECT
-					    a.attname
-					FROM
-					    pg_class c, pg_attribute a
-					WHERE
-					    c.relname=? AND
-					    a.attname=? AND
-					    c.oid=a.attrelid AND
-					    a.attnum > 0
-					ORDER BY
-					    a.attnum";
-			$arrRet = $objQuery->getAll($sql, array($table_name, $col_name));
-			if(count($arrRet) > 0) {
-				return true;
-			}
-		}else if ($db_type == "mysql") {
-			$arrRet = sfGetColumnList($table_name, $objQuery);
-			if(count($arrRet) > 0) {
-				if(!in_array($col_name, $arrRet)){
-					return true;
-				}
-			}
-		}
-		*/
 	}
 	
