File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -187,8 +187,11 @@ The methods below are convenience methods for executing SQL SELECT queries and g
187187``` php
188188 /////////////////////////////////////////////////////////////
189189 // Use this to fetch one row from a database table
190+ //
190191 // - If the row exists, it is returned as an associative array
192+ //
191193 // - If it doesn't exist, false is returned
194+ /////////////////////////////////////////////////////////////
192195 public function dbFetchOne(
193196 string $select_query,
194197 array $parameters = [],
@@ -197,9 +200,12 @@ The methods below are convenience methods for executing SQL SELECT queries and g
197200
198201 /////////////////////////////////////////////////////////////
199202 // Use this to fetch one or more rows from a database table
203+ //
200204 // - If the query matches one or more rows, an array of
201205 // associative arrays is returned
202- // - An empty array is returned if no row(s) are matched
206+ //
207+ // - An empty array is returned if no row(s) are / is matched
208+ /////////////////////////////////////////////////////////////
203209 public function dbFetchAll(
204210 string $select_query,
205211 array $parameters = [],
You can’t perform that action at this time.
0 commit comments