Add Documentation

This commit is contained in:
Dany De Bontridder 2018-01-06 16:39:32 +01:00
parent 1d9a6e7073
commit bb0708b1d5

View file

@ -965,12 +965,12 @@ class Database
return pg_fetch_result($ret, $p_row, $p_col);
}
/**\brief wrapper for the function pg_fetch_row
/**
* \brief wrapper for the function pg_fetch_row
* \param $ret is the result of pg_exec (exec_sql)
* \param $p_row is the indice of the row
* \return an array indexed from 0
*/
static function fetch_row($ret, $p_row)
{
return pg_fetch_row($ret, $p_row);