-
Which of these returns a string containing an error message?
-
- mysql_errno()
- mysql_close()
- mysql_error()
- mysql_sqlstate()
- None of these
Correct Option: C
The API call named ‘mysql_error()’ returns a string containing an error message. ‘mysql_close()’ does not return any value at all. ‘mysql_errno()’ returns a MySQL-specific numeric code.