diff --git a/includes/database/database.inc b/includes/database/database.inc index f7021bb..70c4406 100644 --- a/includes/database/database.inc +++ b/includes/database/database.inc @@ -1994,7 +1994,7 @@ interface DatabaseStatementInterface extends Traversable { * The numeric index of the field to return. Defaults to the first field. * * @return - * A single field from the next record. + * A single field from the next record, or FALSE if there is no next record. */ public function fetchField($index = 0); @@ -2014,7 +2014,7 @@ interface DatabaseStatementInterface extends Traversable { * helper method, so one is added. * * @return - * An associative array. + * An associative array, or FALSE if there is no next row. */ public function fetchAssoc(); @@ -2042,7 +2042,7 @@ interface DatabaseStatementInterface extends Traversable { * The index of the column number to fetch. * * @return - * An indexed array. + * An indexed array, or an empty array if there is no result set. */ public function fetchCol($index = 0); @@ -2062,7 +2062,7 @@ interface DatabaseStatementInterface extends Traversable { * The numeric index of the field to use as the array value. * * @return - * An associative array. + * An associative array, or an empty array if there is no result set. */ public function fetchAllKeyed($key_index = 0, $value_index = 1); @@ -2081,7 +2081,7 @@ interface DatabaseStatementInterface extends Traversable { * set for the query will be used. * * @return - * An associative array. + * An associative array, or an empty array if there is no result set. */ public function fetchAllAssoc($key, $fetch = NULL); }