InterviewSolution
Saved Bookmarks
| 1. |
mysql_next_result() returns a status.(a) True(b) FalseThis question was addressed to me during an online exam.My question is based upon Using Multiple-Statement Execution topic in section MySQL Programs Using C of MySQL |
|
Answer» RIGHT CHOICE is (a) True Explanation: The function ‘mysql_next_result()’ RETURNS a status and INITIATES retrieval of the next set if more results are available. The status is zero if more results are available and -1 if not. |
|