diff options
Diffstat (limited to 'includes/database.pgsql.inc')
-rw-r--r-- | includes/database.pgsql.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/database.pgsql.inc b/includes/database.pgsql.inc index 051e8ea69..ca0603db8 100644 --- a/includes/database.pgsql.inc +++ b/includes/database.pgsql.inc @@ -182,8 +182,8 @@ function _db_query($query, $debug = 0) { * @param $result * A database query result resource, as returned from db_query(). * @return - * An object representing the next row of the result. The attributes of this - * object are the table fields selected by the query. + * An object representing the next row of the result, or FALSE. The attributes + * of this object are the table fields selected by the query. */ function db_fetch_object($result) { if ($result) { @@ -197,9 +197,9 @@ function db_fetch_object($result) { * @param $result * A database query result resource, as returned from db_query(). * @return - * An associative array representing the next row of the result. The keys of - * this object are the names of the table fields selected by the query, and - * the values are the field values for this result row. + * An associative array representing the next row of the result, or FALSE. + * The keys of this object are the names of the table fields selected by the + * query, and the values are the field values for this result row. */ function db_fetch_array($result) { if ($result) { |