InterviewSolution
Saved Bookmarks
| 1. |
The function that returns reference to hash of row values is ____________(a) fetchrow_array()(b) fetchrow_arrayref()(c) fetch()(d) fetchrow_hashref() |
|
Answer» The correct answer is (d) fetchrow_hashref() Best explanation: The function ‘fetchrow_hashref()’ returns reference to hash of row values. ‘fetchrow_arrayref()’ returns a reference to an array of row values. ‘fetch()’ is the same as fetchrow_arrayref(). |
|