InterviewSolution
Saved Bookmarks
| 1. |
The argument to the function mysql_error() is _______________(a) integer(b) float(c) structure(d) pointerThe question was posed to me in a national level competition.Enquiry is from Handling Errors and Processing Command Options in division MySQL Programs Using C of MySQL |
|
Answer» CORRECT answer is (d) pointer To EXPLAIN: The argument to the API functions ‘mysql_error()’, ‘mysql_errno()’ and ‘mysql_sqlstate()’ is a pointer to the connection HANDLER. These should be CALLED after an error occurs. |
|