InterviewSolution
Saved Bookmarks
| 1. |
The argument to the function mysql_error() is _______________(a) integer(b) float(c) structure(d) pointer |
|
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. |
|