Index: temp/trunk/html/admin/system/bkup.php
===================================================================
--- temp/trunk/html/admin/system/bkup.php	(revision 5773)
+++ temp/trunk/html/admin/system/bkup.php	(revision 5774)
@@ -157,6 +157,4 @@
 			// ¼«Æ°ºÎÈÖ·¿¤Î¹½À®¤ò¼èÆÀ¤¹¤ë
 			$csv_autoinc .= lfGetAutoIncrement($val);
-			
-			//sfprintr($csv_autoinc);
 			
 			// Á´¥Ç¡¼¥¿¤ò¼èÆÀ
@@ -300,7 +298,9 @@
 				WHERE (c.relname=?) AND (c.oid=a.attrelid) AND (a.atttypid=t.oid) AND a.attnum > 0
 				ORDER BY fldnum";
-		$arrRet = $objQuery->getAll($sql, array($table_name));
-	}
-	
+	}else if(DB_TYPE == "mysql"){
+		$sql = "SHOW COLUMNS FROM ?";
+	}
+	
+	$arrRet = $objQuery->getAll($sql, array($table_name));
 	return sfSwapArray($arrRet);
 }
