Skip to content

Commit 8509c8d

Browse files
committed
Pre 7.x release updates
1 parent 5e3cd6d commit 8509c8d

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

docs/db-connector-class.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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 = [],

0 commit comments

Comments
 (0)