Index: branches/dev/data/class/SC_Query.php
===================================================================
--- branches/dev/data/class/SC_Query.php	(revision 13308)
+++ branches/dev/data/class/SC_Query.php	(revision 13344)
@@ -119,5 +119,5 @@
      *  @access public
      *  @param  boolean $disp SQLÊ¸¤òprint¤¹¤ë¤«¤É¤¦¤«
-     *  @return string  $disp==false¤Î¾ì¹ç¡§ºÇ¸å¤Ë¼Â¹Ô¤·¤¿SQLÊ¸ $disp==true¤Î¾ì¹ç¡§¤Ê¤·
+     *  @return string  $disp==false¤Î¾ì¹ç¡§ºÇ¸å¤Ë¼Â¹Ô¤·¤¿SQLÊ¸¡¡$disp==true¤Î¾ì¹ç¡§¤Ê¤·
      */
     function getLastQuery($disp = true) {
@@ -320,8 +320,13 @@
     }
     
-    
-	// INSERTÊ¸¤ÎÀ¸À®¡¦¼Â¹Ô
-	// $table	:¥Æ¡¼¥Ö¥ëÌ¾
-	// $sqlval	:ÎóÌ¾ => ÃÍ¤Î³ÊÇ¼¤µ¤ì¤¿¥Ï¥Ã¥·¥åÇÛÎó
+    /**
+     *  INSERTÊ¸¤ò¼Â¹Ô¤¹¤ë
+     *
+     *  @access  public
+     *  @param   string  $table  ¥Æ¡¼¥Ö¥ëÌ¾
+     *  @param   array   $sqlval (¥«¥é¥àÌ¾ => ÃÍ)¤ÎÏ¢ÁÛÇÛÎó
+     *  
+     *  @return  mixed   $result DB_Error¥ª¥Ö¥¸¥§¥¯¥È(¼ºÇÔ»þ)¤Þ¤¿¤ÏDB_OK(À®¸ù»þ)¤Þ¤¿¤Ïfalse(¥«¥é¥à¤¬¸«¤Ä¤«¤é¤Ê¤¤)
+     */
 	function insert($table, $sqlval) {
 		$strcol = '';
@@ -360,7 +365,13 @@
 	}
 	
-		// INSERTÊ¸¤ÎÀ¸À®¡¦¼Â¹Ô
-	// $table	:¥Æ¡¼¥Ö¥ëÌ¾
-	// $sqlval	:ÎóÌ¾ => ÃÍ¤Î³ÊÇ¼¤µ¤ì¤¿¥Ï¥Ã¥·¥åÇÛÎó
+    /**
+     *  INSERTÊ¸¤ò¼Â¹Ô¤¹¤ë
+     *
+     *  @access  public
+     *  @param   string  $table  ¥Æ¡¼¥Ö¥ëÌ¾
+     *  @param   array   $sqlval (¥«¥é¥àÌ¾ => ÃÍ)¤ÎÏ¢ÁÛÇÛÎó
+     *  
+     *  @return  mixed   $result DB_Error¥ª¥Ö¥¸¥§¥¯¥È(¼ºÇÔ»þ)¤Þ¤¿¤ÏDB_OK(À®¸ù»þ)¤Þ¤¿¤Ïfalse(¥«¥é¥à¤¬¸«¤Ä¤«¤é¤Ê¤¤)
+     */
 	function fast_insert($table, $sqlval) {
 		$strcol = '';
@@ -390,5 +401,5 @@
 		$ret = $this->conn->query($sqlin);
 		
-		return $ret;		
+		return $ret;
 	}
 	
