InterviewSolution
Saved Bookmarks
| 1. |
Which of the following can be used interchangeably with MYSQL_VERSION_ID?(a) LIBMYSQL_VERSION(b) LIBMYSQL_VERSION_ID(c) MYSQL_VERSION_ID(d) MYSQL_IDThe question was asked in exam.Query is from Connecting to the Server topic in portion MySQL Programs Using C of MySQL |
|
Answer» CORRECT choice is (b) LIBMYSQL_VERSION_ID The best explanation: The ‘LIBMYSQL_VERSION’ and ‘LIBMYSQL_VERSION_ID’ macros have the same values as ‘MYSQL_SERVER_VERSION’ and ‘MYSQL_VERSION_ID’ and the two SETS of macros can be USED INTERCHANGEABLY. |
|